wujian
2024-03-22 0ce25f34a0d627a5cc0d073d24b8c3e569feac15
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.da.opcuaconfig.mapper;
2
0ce25f 3 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
e57a89 4 import com.jcdm.main.da.opcuaconfig.domain.DaOpcuaConfig;
5
6 import java.util.List;
7
8 /**
9  * 交互信号配置Mapper接口
10  * 
11  * @author yyt
12  * @date 2024-01-23
13  */
0ce25f 14 public interface DaOpcuaConfigMapper extends BaseMapper<DaOpcuaConfig>
e57a89 15 {
16     /**
17      * 查询交互信号配置
18      * 
19      * @param id 交互信号配置主键
20      * @return 交互信号配置
21      */
22     public DaOpcuaConfig selectDaOpcuaConfigById(Long id);
23
24     /**
25      * 查询交互信号配置列表
26      * 
27      * @param daOpcuaConfig 交互信号配置
28      * @return 交互信号配置集合
29      */
30     public List<DaOpcuaConfig> selectDaOpcuaConfigList(DaOpcuaConfig daOpcuaConfig);
31
32     /**
33      * 新增交互信号配置
34      * 
35      * @param daOpcuaConfig 交互信号配置
36      * @return 结果
37      */
38     public int insertDaOpcuaConfig(DaOpcuaConfig daOpcuaConfig);
39
40     /**
41      * 修改交互信号配置
42      * 
43      * @param daOpcuaConfig 交互信号配置
44      * @return 结果
45      */
46     public int updateDaOpcuaConfig(DaOpcuaConfig daOpcuaConfig);
47
48     /**
49      * 删除交互信号配置
50      * 
51      * @param id 交互信号配置主键
52      * @return 结果
53      */
54     public int deleteDaOpcuaConfigById(Long id);
55
56     /**
57      * 批量删除交互信号配置
58      * 
59      * @param ids 需要删除的数据主键集合
60      * @return 结果
61      */
62     public int deleteDaOpcuaConfigByIds(Long[] ids);
63 }