package cn.iocoder.yudao.module.iot.dal.mysql.device;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
import cn.iocoder.yudao.module.iot.controller.admin.device.vo.group.IotDeviceGroupPageReqVO;
|
import cn.iocoder.yudao.module.iot.dal.dataobject.device.IotDeviceGroupDO;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* IoT 设备分组 Mapper
|
*
|
* @author 芋道源码
|
*/
|
@Mapper
|
public interface IotDeviceGroupMapper extends BaseMapperX<IotDeviceGroupDO> {
|
|
default PageResult<IotDeviceGroupDO> selectPage(IotDeviceGroupPageReqVO reqVO) {
|
return selectPage(reqVO, new LambdaQueryWrapperX<IotDeviceGroupDO>()
|
.likeIfPresent(IotDeviceGroupDO::getName, reqVO.getName())
|
.betweenIfPresent(IotDeviceGroupDO::getCreateTime, reqVO.getCreateTime())
|
.orderByDesc(IotDeviceGroupDO::getId));
|
}
|
|
default List<IotDeviceGroupDO> selectListByStatus(Integer status) {
|
return selectList(IotDeviceGroupDO::getStatus, status);
|
}
|
|
default IotDeviceGroupDO selectByName(String name) {
|
return selectOne(IotDeviceGroupDO::getName, name);
|
}
|
|
}
|