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