| | |
| | | package com.iailab.module.data.channel.opcua.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | 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.ChannelOPCUADeviceEntity; |
| | | import com.iailab.module.data.channel.opcua.entity.ChannelOPCUADeviceEntity; |
| | | import com.iailab.module.data.channel.opcua.entity.ChannelOPCUADeviceEntity; |
| | | import com.iailab.module.data.channel.opcua.entity.ChannelOPCUADeviceEntity; |
| | | import com.iailab.module.data.channel.opcua.vo.OpcUaDevicePageReqVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @author lirm |
| | | * @Description |
| | | * @createTime 2023年04月26日 11:31:00 |
| | | * @createTime 2024年08月26日 |
| | | */ |
| | | @TenantDS |
| | | @Mapper |
| | | public interface ChannelOPCUADeviceDao extends BaseMapper<ChannelOPCUADeviceEntity> { |
| | | public interface ChannelOPCUADeviceDao extends BaseMapperX<ChannelOPCUADeviceEntity> { |
| | | |
| | | default PageResult<ChannelOPCUADeviceEntity> selectPage(OpcUaDevicePageReqVO reqVO) { |
| | | return selectPage(reqVO, new LambdaQueryWrapperX<ChannelOPCUADeviceEntity>() |
| | | .likeIfPresent(ChannelOPCUADeviceEntity::getServerName, reqVO.getServerName())); |
| | | } |
| | | } |