hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
4d458e 1 package com.billion.main.da.service;
A 2
3 import com.billion.main.da.domain.DaParamCollection;
bf5dcc 4
H 5 import java.util.List;
4d458e 6
A 7 /**
8  * 参数采集Service接口
9  * 
10  * @author Billion-Yi
11  * @date 2024-11-20
12  */
bf5dcc 13 public interface IDaParamCollectionService
4d458e 14 {
A 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);
bf5dcc 62     /**
H 63      * 使用sqlSessionFactory实现批量插入数据
64      *
65      * @param list 设备产品过程参数采集主键
66      * @return 结果
67      */
68     void saveBeachDaParamCollection(List<DaParamCollection> list);
4d458e 69 }