DS
潘志宝
2024-08-23 0fbd01c6fe5386e454d4053df161b01e8b42f423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.iailab.module.data.channel.opcda.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
import com.iailab.module.data.channel.opcda.entity.ChannelOPCDADeviceEntity;
import org.apache.ibatis.annotations.Mapper;
 
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年04月26日 11:31:00
 */
@TenantDS
@Mapper
public interface ChannelOPCDADeviceDao extends BaseMapper<ChannelOPCDADeviceEntity> {
 
}