BOM
hdy
2024-11-26 f47bd7409609995c7eebb81a0b92b6e4aff0bdbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.billion.main.sc.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.billion.main.sc.domain.ScOpcConf;
 
import java.util.List;
 
/**
 * OPC交互配置Service接口
 * 
 * @author HDY
 * @date 2024-11-20
 */
public interface IScOpcConfService extends IService<ScOpcConf>
{
    /**
     * 查询OPC交互配置
     * 
     * @param id OPC交互配置主键
     * @return OPC交互配置
     */
    public ScOpcConf selectScOpcConfById(Long id);
 
    /**
     * 查询OPC交互配置列表
     * 
     * @param scOpcConf OPC交互配置
     * @return OPC交互配置集合
     */
    public List<ScOpcConf> selectScOpcConfList(ScOpcConf scOpcConf);
 
    /**
     * 新增OPC交互配置
     * 
     * @param scOpcConf OPC交互配置
     * @return 结果
     */
    public int insertScOpcConf(ScOpcConf scOpcConf);
 
    /**
     * 修改OPC交互配置
     * 
     * @param scOpcConf OPC交互配置
     * @return 结果
     */
    public int updateScOpcConf(ScOpcConf scOpcConf);
 
    /**
     * 批量删除OPC交互配置
     * 
     * @param ids 需要删除的OPC交互配置主键集合
     * @return 结果
     */
    public int deleteScOpcConfByIds(Long[] ids);
 
    /**
     * 删除OPC交互配置信息
     * 
     * @param id OPC交互配置主键
     * @return 结果
     */
    public int deleteScOpcConfById(Long id);
}