提交 | 用户 | 时间
|
fd2207
|
1 |
package com.jcdm.main.da.passingStationCollection.service; |
懒 |
2 |
|
9ebb88
|
3 |
import com.jcdm.main.bs.orderScheduling.domain.BsOrderScheduling; |
fd2207
|
4 |
import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection; |
c6e069
|
5 |
import com.jcdm.main.da.passingStationCollection.vo.DaPassingStationVO; |
fd2207
|
6 |
|
懒 |
7 |
import java.util.List; |
|
8 |
|
|
9 |
/** |
|
10 |
* 产品过站采集Service接口 |
|
11 |
* |
|
12 |
* @author yyt |
|
13 |
* @date 2023-12-12 |
|
14 |
*/ |
|
15 |
public interface IDaPassingStationCollectionService |
|
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); |
c6e069
|
32 |
public List<DaPassingStationVO> getTopProcess(DaPassingStationCollection daPassingStationCollection); |
fd2207
|
33 |
|
9ebb88
|
34 |
|
W |
35 |
/** |
|
36 |
* 获取首页单日累计量产数据 |
|
37 |
* @param fieldName bs |
|
38 |
* @return list |
|
39 |
*/ |
|
40 |
public Integer getProduceNumToday(String fieldName); |
|
41 |
|
fd2207
|
42 |
/** |
懒 |
43 |
* 新增产品过站采集 |
|
44 |
* |
|
45 |
* @param daPassingStationCollection 产品过站采集 |
|
46 |
* @return 结果 |
|
47 |
*/ |
|
48 |
public int insertDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection); |
|
49 |
|
|
50 |
/** |
|
51 |
* 修改产品过站采集 |
|
52 |
* |
|
53 |
* @param daPassingStationCollection 产品过站采集 |
|
54 |
* @return 结果 |
|
55 |
*/ |
|
56 |
public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection); |
|
57 |
|
|
58 |
/** |
|
59 |
* 批量删除产品过站采集 |
|
60 |
* |
|
61 |
* @param ids 需要删除的产品过站采集主键集合 |
|
62 |
* @return 结果 |
|
63 |
*/ |
|
64 |
public int deleteDaPassingStationCollectionByIds(Long[] ids); |
|
65 |
|
|
66 |
/** |
|
67 |
* 删除产品过站采集信息 |
|
68 |
* |
|
69 |
* @param id 产品过站采集主键 |
|
70 |
* @return 结果 |
|
71 |
*/ |
|
72 |
public int deleteDaPassingStationCollectionById(Long id); |
ff985a
|
73 |
|
懒 |
74 |
void insertRepairRecordByIds(DaPassingStationCollection daPassingStationCollection); |
f7a995
|
75 |
|
Y |
76 |
/** |
|
77 |
* SN检索 |
|
78 |
* |
|
79 |
* @param SNcode 产品SN |
|
80 |
* @return 结果 |
|
81 |
*/ |
|
82 |
public String SelectSN(String SNcode); |
fd2207
|
83 |
} |