wujian
2024-03-22 0ce25f34a0d627a5cc0d073d24b8c3e569feac15
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.da.paramCollection.service;
2
0ce25f 3 import com.baomidou.mybatisplus.extension.service.IService;
e57a89 4 import com.jcdm.main.da.paramCollection.domain.DaParamCollection;
5
6 import java.util.List;
7
8 /**
9  * 设备产品过程参数采集Service接口
10  * 
11  * @author yyt
12  * @date 2023-12-13
13  */
0ce25f 14 public interface IDaParamCollectionService extends IService<DaParamCollection>
e57a89 15 {
16     /**
17      * 查询设备产品过程参数采集
18      * 
19      * @param id 设备产品过程参数采集主键
20      * @return 设备产品过程参数采集
21      */
22     public DaParamCollection selectDaParamCollectionById(Long id);
23
24     /**
25      * 查询设备产品过程参数采集列表
26      * 
27      * @param daParamCollection 设备产品过程参数采集
28      * @return 设备产品过程参数采集集合
29      */
30     public List<DaParamCollection> selectDaParamCollectionList(DaParamCollection daParamCollection);
31
32     /**
33      * 新增设备产品过程参数采集
34      * 
35      * @param daParamCollection 设备产品过程参数采集
36      * @return 结果
37      */
38     public int insertDaParamCollection(DaParamCollection daParamCollection);
39
40     /**
41      * 修改设备产品过程参数采集
42      * 
43      * @param daParamCollection 设备产品过程参数采集
44      * @return 结果
45      */
46     public int updateDaParamCollection(DaParamCollection daParamCollection);
47
48     /**
49      * 批量删除设备产品过程参数采集
50      * 
51      * @param ids 需要删除的设备产品过程参数采集主键集合
52      * @return 结果
53      */
54     public int deleteDaParamCollectionByIds(Long[] ids);
55
56     /**
57      * 删除设备产品过程参数采集信息
58      * 
59      * @param id 设备产品过程参数采集主键
60      * @return 结果
61      */
62     public int deleteDaParamCollectionById(Long id);
b64ed2 63
64     void addBasicParameters(DaParamCollection daParamCollection);
49c784 65
66     void addTighteningParameters(DaParamCollection daParamCollection);
32483a 67
68     void saveCampaignTimeParameters(DaParamCollection daParamCollection);
e57a89 69 }