liriming
2024-09-02 6bf63be83c6e5eeed1b5d19747f473478075c3a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.iailab.module.data.channel.modbus.dao;
 
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.modbus.entity.ChannelModBusDeviceEntity;
import com.iailab.module.data.channel.modbus.vo.ModBusDevicePageReqVO;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年04月24日 11:33:00
 */
@TenantDS
@Mapper
public interface ChannelModBusDeviceDao extends BaseMapperX<ChannelModBusDeviceEntity> {
 
    default PageResult<ChannelModBusDeviceEntity> selectPage(ModBusDevicePageReqVO reqVO) {
        return selectPage(reqVO, new LambdaQueryWrapperX<ChannelModBusDeviceEntity>()
                .likeIfPresent(ChannelModBusDeviceEntity::getName, reqVO.getName())
                .likeIfPresent(ChannelModBusDeviceEntity::getAddress, reqVO.getAddress())
                .orderByDesc(ChannelModBusDeviceEntity::getCreateTime));
    }
 
}