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