wujian
2024-02-22 268beb4ebc1e5b8d4ad715b71cd64a0944073a87
提交 | 用户 | 时间
268beb 1 package com.jcdm.main.sc.stationConf.service;
W 2
3 import java.util.List;
4 import com.jcdm.main.sc.stationConf.domain.ScStationConf;
5
6 /**
7  * 工位终端配置Service接口
8  * 
9  * @author Yi
10  * @date 2024-01-06
11  */
12 public interface IScStationConfService 
13 {
14     /**
15      * 查询工位终端配置
16      * 
17      * @param id 工位终端配置主键
18      * @return 工位终端配置
19      */
20     public ScStationConf selectScStationConfById(Long id);
21
22     /**
23      * 查询工位终端配置列表
24      * 
25      * @param scStationConf 工位终端配置
26      * @return 工位终端配置集合
27      */
28     public List<ScStationConf> selectScStationConfList(ScStationConf scStationConf);
29
30     /**
31      * 新增工位终端配置
32      * 
33      * @param scStationConf 工位终端配置
34      * @return 结果
35      */
36     public int insertScStationConf(ScStationConf scStationConf);
37
38     /**
39      * 修改工位终端配置
40      * 
41      * @param scStationConf 工位终端配置
42      * @return 结果
43      */
44     public int updateScStationConf(ScStationConf scStationConf);
45
46     /**
47      * 批量删除工位终端配置
48      * 
49      * @param ids 需要删除的工位终端配置主键集合
50      * @return 结果
51      */
52     public int deleteScStationConfByIds(Long[] ids);
53
54     /**
55      * 删除工位终端配置信息
56      * 
57      * @param id 工位终端配置主键
58      * @return 结果
59      */
60     public int deleteScStationConfById(Long id);
61
62     String getIpv4();
63 }