春风项目四线(合箱线、总装线)
yyt
2024-02-21 220f7b818bb9399391830fbbb9fb2028a21b938f
提交 | 用户 | 时间
fd2207 1 package com.jcdm.main.da.paramCollection.mapper;
2
3 import com.jcdm.main.da.paramCollection.domain.DaParamCollection;
c74dcb 4 import org.apache.ibatis.annotations.Param;
fd2207 5 import java.util.List;
6
7 /**
8  * 设备产品过程参数采集Mapper接口
9  * 
10  * @author yyt
11  * @date 2023-12-13
12  */
13 public interface DaParamCollectionMapper 
14 {
15     /**
16      * 查询设备产品过程参数采集
17      * 
18      * @param id 设备产品过程参数采集主键
19      * @return 设备产品过程参数采集
20      */
21     public DaParamCollection selectDaParamCollectionById(Long id);
22
23     /**
24      * 查询设备产品过程参数采集列表
25      * 
26      * @param daParamCollection 设备产品过程参数采集
27      * @return 设备产品过程参数采集集合
28      */
29     public List<DaParamCollection> selectDaParamCollectionList(DaParamCollection daParamCollection);
30
c74dcb 31     public List<DaParamCollection> getListBySfcCode(@Param("engineNoList") List<String> engineNoList);
W 32
fd2207 33     /**
34      * 新增设备产品过程参数采集
35      * 
36      * @param daParamCollection 设备产品过程参数采集
37      * @return 结果
38      */
39     public int insertDaParamCollection(DaParamCollection daParamCollection);
40
41     /**
42      * 修改设备产品过程参数采集
43      * 
44      * @param daParamCollection 设备产品过程参数采集
45      * @return 结果
46      */
47     public int updateDaParamCollection(DaParamCollection daParamCollection);
48
49     /**
50      * 删除设备产品过程参数采集
51      * 
52      * @param id 设备产品过程参数采集主键
53      * @return 结果
54      */
55     public int deleteDaParamCollectionById(Long id);
56
57     /**
58      * 批量删除设备产品过程参数采集
59      * 
60      * @param ids 需要删除的数据主键集合
61      * @return 结果
62      */
63     public int deleteDaParamCollectionByIds(Long[] ids);
64 }