懒羊羊
2024-03-21 32483a44c0ee1c4d605730ef6f894d43f76b3048
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.da.paramCollection.service;
2
3 import com.jcdm.main.da.paramCollection.domain.DaParamCollection;
4
5 import java.util.List;
6
7 /**
8  * 设备产品过程参数采集Service接口
9  * 
10  * @author yyt
11  * @date 2023-12-13
12  */
13 public interface IDaParamCollectionService 
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
31     /**
32      * 新增设备产品过程参数采集
33      * 
34      * @param daParamCollection 设备产品过程参数采集
35      * @return 结果
36      */
37     public int insertDaParamCollection(DaParamCollection daParamCollection);
38
39     /**
40      * 修改设备产品过程参数采集
41      * 
42      * @param daParamCollection 设备产品过程参数采集
43      * @return 结果
44      */
45     public int updateDaParamCollection(DaParamCollection daParamCollection);
46
47     /**
48      * 批量删除设备产品过程参数采集
49      * 
50      * @param ids 需要删除的设备产品过程参数采集主键集合
51      * @return 结果
52      */
53     public int deleteDaParamCollectionByIds(Long[] ids);
54
55     /**
56      * 删除设备产品过程参数采集信息
57      * 
58      * @param id 设备产品过程参数采集主键
59      * @return 结果
60      */
61     public int deleteDaParamCollectionById(Long id);
b64ed2 62
63     void addBasicParameters(DaParamCollection daParamCollection);
49c784 64
65     void addTighteningParameters(DaParamCollection daParamCollection);
32483a 66
67     void saveCampaignTimeParameters(DaParamCollection daParamCollection);
e57a89 68 }