懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
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
package com.jcdm.main.da.paramCollection.mapper;
 
import com.jcdm.main.da.paramCollection.domain.DaParamCollection;
 
import java.util.List;
 
/**
 * 设备产品过程参数采集Mapper接口
 * 
 * @author yyt
 * @date 2023-12-13
 */
public interface DaParamCollectionMapper 
{
    /**
     * 查询设备产品过程参数采集
     * 
     * @param id 设备产品过程参数采集主键
     * @return 设备产品过程参数采集
     */
    public DaParamCollection selectDaParamCollectionById(Long id);
 
    /**
     * 查询设备产品过程参数采集列表
     * 
     * @param daParamCollection 设备产品过程参数采集
     * @return 设备产品过程参数采集集合
     */
    public List<DaParamCollection> selectDaParamCollectionList(DaParamCollection daParamCollection);
 
    /**
     * 新增设备产品过程参数采集
     * 
     * @param daParamCollection 设备产品过程参数采集
     * @return 结果
     */
    public int insertDaParamCollection(DaParamCollection daParamCollection);
 
    /**
     * 修改设备产品过程参数采集
     * 
     * @param daParamCollection 设备产品过程参数采集
     * @return 结果
     */
    public int updateDaParamCollection(DaParamCollection daParamCollection);
 
    /**
     * 删除设备产品过程参数采集
     * 
     * @param id 设备产品过程参数采集主键
     * @return 结果
     */
    public int deleteDaParamCollectionById(Long id);
 
    /**
     * 批量删除设备产品过程参数采集
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteDaParamCollectionByIds(Long[] ids);
}