提交 | 用户 | 时间
|
0ca254
|
1 |
package com.jcdm.main.da.paramCollection.service; |
A |
2 |
|
|
3 |
import com.baomidou.mybatisplus.extension.service.IService; |
|
4 |
import com.jcdm.common.core.domain.AjaxResult; |
|
5 |
import com.jcdm.main.da.paramCollection.domain.DaParamCollection; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
|
|
9 |
/** |
|
10 |
* 设备产品过程参数采集Service接口 |
|
11 |
* |
|
12 |
* @author yyt |
|
13 |
* @date 2023-12-13 |
|
14 |
*/ |
|
15 |
public interface IDaParamCollectionService extends IService<DaParamCollection> |
|
16 |
{ |
|
17 |
/** |
|
18 |
* 查询设备产品过程参数采集 |
|
19 |
* |
|
20 |
* @param id 设备产品过程参数采集主键 |
|
21 |
* @return 设备产品过程参数采集 |
|
22 |
*/ |
|
23 |
public DaParamCollection selectDaParamCollectionById(Long id); |
|
24 |
|
|
25 |
/** |
|
26 |
* 查询设备产品过程参数采集列表 |
|
27 |
* |
|
28 |
* @param daParamCollection 设备产品过程参数采集 |
|
29 |
* @return 设备产品过程参数采集集合 |
|
30 |
*/ |
|
31 |
public List<DaParamCollection> selectDaParamCollectionList(DaParamCollection daParamCollection); |
|
32 |
|
|
33 |
/** |
|
34 |
* 新增设备产品过程参数采集 |
|
35 |
* |
|
36 |
* @param daParamCollection 设备产品过程参数采集 |
|
37 |
* @return 结果 |
|
38 |
*/ |
|
39 |
public int insertDaParamCollection(DaParamCollection daParamCollection); |
|
40 |
|
|
41 |
/** |
|
42 |
* 修改设备产品过程参数采集 |
|
43 |
* |
|
44 |
* @param daParamCollection 设备产品过程参数采集 |
|
45 |
* @return 结果 |
|
46 |
*/ |
|
47 |
public int updateDaParamCollection(DaParamCollection daParamCollection); |
|
48 |
|
|
49 |
/** |
|
50 |
* 批量删除设备产品过程参数采集 |
|
51 |
* |
|
52 |
* @param ids 需要删除的设备产品过程参数采集主键集合 |
|
53 |
* @return 结果 |
|
54 |
*/ |
|
55 |
public int deleteDaParamCollectionByIds(Long[] ids); |
|
56 |
|
|
57 |
/** |
|
58 |
* 删除设备产品过程参数采集信息 |
|
59 |
* |
|
60 |
* @param id 设备产品过程参数采集主键 |
|
61 |
* @return 结果 |
|
62 |
*/ |
|
63 |
public int deleteDaParamCollectionById(Long id); |
|
64 |
|
|
65 |
void addBasicParameters(DaParamCollection daParamCollection); |
|
66 |
|
|
67 |
void addTighteningParameters(DaParamCollection daParamCollection); |
|
68 |
|
|
69 |
void saveCampaignTimeParameters(DaParamCollection daParamCollection); |
|
70 |
|
|
71 |
void saveBeachDaParamCollection(List<DaParamCollection> list); |
|
72 |
|
|
73 |
void insertBatch(List<DaParamCollection> confList); |
|
74 |
|
|
75 |
void replaceAssemblyCode(DaParamCollection daParamCollection); |
|
76 |
|
|
77 |
void yzAddBasicParameters(DaParamCollection daParamCollection); |
|
78 |
|
|
79 |
void jrmSaveCampaignTimeParameters(DaParamCollection daParamCollection); |
|
80 |
void sendToFactoryMes(String stationCode,String productNum ); |
|
81 |
|
|
82 |
void pushGeelycvMesFeedback(String packID,String stationCode); |
|
83 |
|
|
84 |
void automaticWorkstationPushGeelycvMesFeedback(String packID,String stationCode,List<DaParamCollection> list); |
|
85 |
|
|
86 |
AjaxResult checkRecordDataDone(DaParamCollection daParamCollection); |
|
87 |
|
|
88 |
void enterWeighing(DaParamCollection daParamCollection); |
|
89 |
|
|
90 |
void manualWorkstationsAddBasicParameters(DaParamCollection daParamCollection); |
|
91 |
|
|
92 |
void preInstallOut(DaParamCollection daParamCollection); |
2de856
|
93 |
|
C |
94 |
void saveParameters(DaParamCollection daParamCollection); |
0ca254
|
95 |
} |