-
admin
2024-11-20 4d458ebf237e56228a709754c020e47fe252dca1
提交 | 用户 | 时间
4d458e 1 package com.billion.main.da.mapper;
A 2
3 import java.util.List;
4
5 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
6 import com.billion.main.da.domain.DaParamCollection;
7
8 /**
9  * 参数采集Mapper接口
10  * 
11  * @author Billion-Yi
12  * @date 2024-11-20
13  */
14 public interface DaParamCollectionMapper extends BaseMapper<DaParamCollection>
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 id 参数采集主键
52      * @return 结果
53      */
54     public int deleteDaParamCollectionById(Long id);
55
56     /**
57      * 批量删除参数采集
58      * 
59      * @param ids 需要删除的数据主键集合
60      * @return 结果
61      */
62     public int deleteDaParamCollectionByIds(Long[] ids);
63 }