hdy
2025-02-27 bf5dcc46de28c2ca664be4c6c3566e0a82c1ecd6
提交 | 用户 | 时间
4d458e 1 package com.billion.main.da.mapper;
A 2
3 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
4 import com.billion.main.da.domain.DaParamCollection;
bf5dcc 5 import org.apache.ibatis.annotations.Param;
H 6
7 import java.util.List;
4d458e 8
A 9 /**
10  * 参数采集Mapper接口
11  * 
12  * @author Billion-Yi
13  * @date 2024-11-20
14  */
15 public interface DaParamCollectionMapper extends BaseMapper<DaParamCollection>
16 {
17     /**
18      * 查询参数采集
19      * 
20      * @param id 参数采集主键
21      * @return 参数采集
22      */
23     public DaParamCollection selectDaParamCollectionById(Long id);
24
25     /**
26      * 查询参数采集列表
27      * 
28      * @param daParamCollection 参数采集
29      * @return 参数采集集合
30      */
31     public List<DaParamCollection> selectDaParamCollectionList(DaParamCollection daParamCollection);
32
bf5dcc 33     public List<DaParamCollection> getListBySfcCode(@Param("engineNoList") List<String> engineNoList);
H 34
4d458e 35     /**
A 36      * 新增参数采集
37      * 
38      * @param daParamCollection 参数采集
39      * @return 结果
40      */
41     public int insertDaParamCollection(DaParamCollection daParamCollection);
42
43     /**
44      * 修改参数采集
45      * 
46      * @param daParamCollection 参数采集
47      * @return 结果
48      */
49     public int updateDaParamCollection(DaParamCollection daParamCollection);
50
51     /**
52      * 删除参数采集
53      * 
54      * @param id 参数采集主键
55      * @return 结果
56      */
57     public int deleteDaParamCollectionById(Long id);
58
59     /**
60      * 批量删除参数采集
61      * 
62      * @param ids 需要删除的数据主键集合
63      * @return 结果
64      */
65     public int deleteDaParamCollectionByIds(Long[] ids);
66 }