liriming
2024-08-26 aecc4908e1f2861d2dab1929a88f9053238b2dd2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.iailab.module.data.channel.modbus.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
import com.iailab.module.data.channel.modbus.entity.ChannelModBusTagEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author DongYukun
 * @Description
 * @createTime 2023年04月25日 15:12:00
 */
@TenantDS
@Mapper
public interface ChannelModBusTagDao extends BaseMapper<ChannelModBusTagEntity> {
 
    void insertList(List<ChannelModBusTagEntity> list);
 
    String selectIdByName(@Param("name") String name);
}