houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.iailab.module.data.channel.modbus.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
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
 */
@Mapper
public interface ChannelModBusTagDao extends BaseMapper<ChannelModBusTagEntity> {
 
    void insertList(List<ChannelModBusTagEntity> list);
 
    String selectIdByName(@Param("name") String name);
}