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