懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.da.passingStationCollection.mapper;
2
3 import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
4
5 import java.util.List;
6
7 /**
8  * 产品过站采集Mapper接口
9  * 
10  * @author yyt
11  * @date 2023-12-12
12  */
13 public interface DaPassingStationCollectionMapper 
14 {
15     /**
16      * 查询产品过站采集
17      * 
18      * @param id 产品过站采集主键
19      * @return 产品过站采集
20      */
21     public DaPassingStationCollection selectDaPassingStationCollectionById(Long id);
22
23     /**
24      * 查询产品过站采集列表
25      * 
26      * @param daPassingStationCollection 产品过站采集
27      * @return 产品过站采集集合
28      */
29     public List<DaPassingStationCollection> selectDaPassingStationCollectionList(DaPassingStationCollection daPassingStationCollection);
30
31     /**
32      * 新增产品过站采集
33      * 
34      * @param daPassingStationCollection 产品过站采集
35      * @return 结果
36      */
37     public int insertDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
38
39     /**
40      * 修改产品过站采集
41      * 
42      * @param daPassingStationCollection 产品过站采集
43      * @return 结果
44      */
45     public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
46
47     /**
48      * 删除产品过站采集
49      * 
50      * @param id 产品过站采集主键
51      * @return 结果
52      */
53     public int deleteDaPassingStationCollectionById(Long id);
54
55     /**
56      * 批量删除产品过站采集
57      * 
58      * @param ids 需要删除的数据主键集合
59      * @return 结果
60      */
61     public int deleteDaPassingStationCollectionByIds(Long[] ids);
62 }