吴健
2024-11-22 226f411c28e7d16660c997fcc382a2218d1d9ca7
提交 | 用户 | 时间
04f79e 1 package com.billion.main.sc.service;
H 2
3 import com.baomidou.mybatisplus.extension.service.IService;
4 import com.billion.main.sc.domain.ScCollectionParamConf;
5
6 import java.util.List;
7
8 /**
9  * 参数采集配置Service接口
10  * 
11  * @author HDY
12  * @date 2024-11-21
13  */
14 public interface IScCollectionParamConfService extends IService<ScCollectionParamConf>
15 {
16     /**
17      * 查询参数采集配置
18      * 
19      * @param id 参数采集配置主键
20      * @return 参数采集配置
21      */
22     public ScCollectionParamConf selectScCollectionParamConfById(Long id);
23
24     /**
25      * 查询参数采集配置列表
26      * 
27      * @param scCollectionParamConf 参数采集配置
28      * @return 参数采集配置集合
29      */
30     public List<ScCollectionParamConf> selectScCollectionParamConfList(ScCollectionParamConf scCollectionParamConf);
31
32     /**
33      * 新增参数采集配置
34      * 
35      * @param scCollectionParamConf 参数采集配置
36      * @return 结果
37      */
38     public int insertScCollectionParamConf(ScCollectionParamConf scCollectionParamConf);
39
40     /**
41      * 修改参数采集配置
42      * 
43      * @param scCollectionParamConf 参数采集配置
44      * @return 结果
45      */
46     public int updateScCollectionParamConf(ScCollectionParamConf scCollectionParamConf);
47
48     /**
49      * 批量删除参数采集配置
50      * 
51      * @param ids 需要删除的参数采集配置主键集合
52      * @return 结果
53      */
54     public int deleteScCollectionParamConfByIds(Long[] ids);
55
56     /**
57      * 删除参数采集配置信息
58      * 
59      * @param id 参数采集配置主键
60      * @return 结果
61      */
62     public int deleteScCollectionParamConfById(Long id);
63 }