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