春风项目四线(合箱线、总装线)
yyt
2024-02-21 a9406b6b18ee5a8e29cad3248f46320a36ac9749
提交 | 用户 | 时间
fd2207 1 package com.jcdm.main.da.passingStationCollection.mapper;
2
3 import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
c74dcb 4 import org.apache.ibatis.annotations.Param;
fd2207 5
6 import java.util.List;
7
8 /**
9  * 产品过站采集Mapper接口
10  * 
11  * @author yyt
12  * @date 2023-12-12
13  */
14 public interface DaPassingStationCollectionMapper 
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
c74dcb 32     public List<DaPassingStationCollection> getListBySfcCode(@Param("engineNoList") List<String> engineNoList);
W 33
fd2207 34     /**
35      * 新增产品过站采集
36      * 
37      * @param daPassingStationCollection 产品过站采集
38      * @return 结果
39      */
40     public int insertDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
41
42     /**
43      * 修改产品过站采集
44      * 
45      * @param daPassingStationCollection 产品过站采集
46      * @return 结果
47      */
48     public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
49
50     /**
51      * 删除产品过站采集
52      * 
53      * @param id 产品过站采集主键
54      * @return 结果
55      */
56     public int deleteDaPassingStationCollectionById(Long id);
57
58     /**
59      * 批量删除产品过站采集
60      * 
61      * @param ids 需要删除的数据主键集合
62      * @return 结果
63      */
64     public int deleteDaPassingStationCollectionByIds(Long[] ids);
65 }