package com.iailab.module.data.channel.opcua.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.opcua.entity.ChannelOPCUATagEntity;
|
import com.iailab.module.data.channel.opcua.vo.OpcUaTagPageReqVO;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author lirm
|
* @Description
|
* @createTime 2024年08月26日
|
*/
|
@TenantDS
|
@Mapper
|
public interface ChannelOPCUATagDao extends BaseMapperX<ChannelOPCUATagEntity> {
|
default PageResult<ChannelOPCUATagEntity> selectPage(OpcUaTagPageReqVO reqVO) {
|
return selectPage(reqVO, new LambdaQueryWrapperX<ChannelOPCUATagEntity>()
|
.likeIfPresent(ChannelOPCUATagEntity::getTagName, reqVO.getTagName())
|
.likeIfPresent(ChannelOPCUATagEntity::getDevice, reqVO.getDevice())
|
.orderByDesc(ChannelOPCUATagEntity::getCreateTime));
|
}
|
}
|