hdy
2025-02-26 a2cd0f560c226d7830c79fa3c0a6cb3db72927b4
提交 | 用户 | 时间
04f79e 1 package com.billion.main.sc.mapper;
H 2
3 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
4 import com.billion.main.sc.domain.ScCollectionParamConf;
5
6 import java.util.List;
7
8 /**
9  * 参数采集配置Mapper接口
10  * 
11  * @author HDY
12  * @date 2024-11-21
13  */
14 public interface ScCollectionParamConfMapper extends BaseMapper<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 id 参数采集配置主键
52      * @return 结果
53      */
54     public int deleteScCollectionParamConfById(Long id);
55
56     /**
57      * 批量删除参数采集配置
58      * 
59      * @param ids 需要删除的数据主键集合
60      * @return 结果
61      */
62     public int deleteScCollectionParamConfByIds(Long[] ids);
63 }