package com.sandu.ximon.dao.mapper;
|
|
import com.sandu.ximon.dao.domain.LedPlayerEntity;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* @Entity com.sandu.ximon.dao.domain.LedPlayerEntity
|
*/
|
@Mapper
|
public interface LedPlayerEntityMapper extends BaseMapper<LedPlayerEntity> {
|
|
boolean saveLed(LedPlayerEntity ledPlayerEntity);
|
|
List<LedPlayerEntity> ledPlayerEntityList(String keyword, Long userid);
|
}
|