春风项目四线(合箱线、总装线)
yyt
2024-01-13 928aac8d7848dfa2c978f200e113f3a85973a4d0
提交 | 用户 | 时间
e4c3b0 1 package com.jcdm.main.da.opcuaconfig.mapper;
Y 2
3 import com.jcdm.main.da.opcuaconfig.domain.DaOpcuaConfig;
4
5 import java.util.List;
6
7 /**
8  * OPCUA参数设置Mapper接口
9  * 
10  * @author yyt
11  * @date 2023-12-22
12  */
13 public interface DaOpcuaConfigMapper 
14 {
15     /**
16      * 查询OPCUA参数设置
17      * 
18      * @param id OPCUA参数设置主键
19      * @return OPCUA参数设置
20      */
21     public DaOpcuaConfig selectDaOpcuaConfigById(Long id);
22
23     /**
24      * 查询OPCUA参数设置列表
25      * 
928aac 26      * @param daOpcuaConfig OPCUA参数设置1
e4c3b0 27      * @return OPCUA参数设置集合
Y 28      */
29     public List<DaOpcuaConfig> selectDaOpcuaConfigList(DaOpcuaConfig daOpcuaConfig);
30
31     /**
c36191 32      * 新增OPCUA参数设置99
e4c3b0 33      * 
Y 34      * @param daOpcuaConfig OPCUA参数设置
35      * @return 结果
36      */
37     public int insertDaOpcuaConfig(DaOpcuaConfig daOpcuaConfig);
38
39     /**
40      * 修改OPCUA参数设置
41      * 
42      * @param daOpcuaConfig OPCUA参数设置
43      * @return 结果
44      */
45     public int updateDaOpcuaConfig(DaOpcuaConfig daOpcuaConfig);
46
47     /**
48      * 删除OPCUA参数设置
49      * 
50      * @param id OPCUA参数设置主键
51      * @return 结果
52      */
53     public int deleteDaOpcuaConfigById(Long id);
54
55     /**
56      * 批量删除OPCUA参数设置
57      * 
58      * @param ids 需要删除的数据主键集合
59      * @return 结果
60      */
61     public int deleteDaOpcuaConfigByIds(Long[] ids);
62 }