| | |
| | | package com.iailab.module.data.channel.kio.dao; |
| | | |
| | | import com.iailab.framework.common.dao.BaseDao; |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
| | | import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX; |
| | | import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
| | | import com.iailab.module.data.channel.kio.entity.ChannelKioTagEntity; |
| | | import com.iailab.module.data.channel.kio.entity.ChannelKioTagEntity; |
| | | import com.iailab.module.data.channel.kio.vo.KioDevicePageReqVO; |
| | | import com.iailab.module.data.channel.kio.vo.KioTagPageReqVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @author lirm |
| | | * @Description |
| | | * @createTime 2024年06月05日 |
| | | * @createTime 2024年08月26日 |
| | | */ |
| | | @TenantDS |
| | | @Mapper |
| | | public interface ChannelKioTagDao extends BaseDao<ChannelKioTagEntity> { |
| | | public interface ChannelKioTagDao extends BaseMapperX<ChannelKioTagEntity> { |
| | | default PageResult<ChannelKioTagEntity> selectPage(KioTagPageReqVO reqVO) { |
| | | return selectPage(reqVO, new LambdaQueryWrapperX<ChannelKioTagEntity>() |
| | | .likeIfPresent(ChannelKioTagEntity::getTagName, reqVO.getTagName()) |
| | | .likeIfPresent(ChannelKioTagEntity::getDevice, reqVO.getDevice()) |
| | | .orderByDesc(ChannelKioTagEntity::getCreateTime)); |
| | | } |
| | | } |