提交 | 用户 | 时间
|
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; |
059083
|
7 |
import java.util.Map; |
fd2207
|
8 |
|
懒 |
9 |
/** |
|
10 |
* 产品过站采集Mapper接口 |
|
11 |
* |
|
12 |
* @author yyt |
|
13 |
* @date 2023-12-12 |
|
14 |
*/ |
|
15 |
public interface DaPassingStationCollectionMapper |
|
16 |
{ |
|
17 |
/** |
|
18 |
* 查询产品过站采集 |
|
19 |
* |
|
20 |
* @param id 产品过站采集主键 |
|
21 |
* @return 产品过站采集 |
|
22 |
*/ |
|
23 |
public DaPassingStationCollection selectDaPassingStationCollectionById(Long id); |
|
24 |
|
|
25 |
/** |
|
26 |
* 查询产品过站采集列表 |
|
27 |
* |
|
28 |
* @param daPassingStationCollection 产品过站采集 |
|
29 |
* @return 产品过站采集集合 |
|
30 |
*/ |
|
31 |
public List<DaPassingStationCollection> selectDaPassingStationCollectionList(DaPassingStationCollection daPassingStationCollection); |
|
32 |
|
c74dcb
|
33 |
public List<DaPassingStationCollection> getListBySfcCode(@Param("engineNoList") List<String> engineNoList); |
W |
34 |
|
fd2207
|
35 |
/** |
懒 |
36 |
* 新增产品过站采集 |
|
37 |
* |
|
38 |
* @param daPassingStationCollection 产品过站采集 |
|
39 |
* @return 结果 |
|
40 |
*/ |
|
41 |
public int insertDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection); |
|
42 |
|
|
43 |
/** |
|
44 |
* 修改产品过站采集 |
|
45 |
* |
|
46 |
* @param daPassingStationCollection 产品过站采集 |
|
47 |
* @return 结果 |
|
48 |
*/ |
|
49 |
public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection); |
|
50 |
|
|
51 |
/** |
|
52 |
* 删除产品过站采集 |
|
53 |
* |
|
54 |
* @param id 产品过站采集主键 |
|
55 |
* @return 结果 |
|
56 |
*/ |
|
57 |
public int deleteDaPassingStationCollectionById(Long id); |
|
58 |
|
|
59 |
/** |
|
60 |
* 批量删除产品过站采集 |
|
61 |
* |
|
62 |
* @param ids 需要删除的数据主键集合 |
|
63 |
* @return 结果 |
|
64 |
*/ |
|
65 |
public int deleteDaPassingStationCollectionByIds(Long[] ids); |
059083
|
66 |
|
W |
67 |
public String SelectSN(Map<String, Object> map); |
fd2207
|
68 |
} |