| | |
| | | package com.jcdm.main.da.paramCollection.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.jcdm.common.core.domain.AjaxResult; |
| | | import com.jcdm.main.da.paramCollection.domain.DaParamCollection; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author yyt |
| | | * @date 2023-12-13 |
| | | */ |
| | | public interface IDaParamCollectionService |
| | | public interface IDaParamCollectionService extends IService<DaParamCollection> |
| | | { |
| | | /** |
| | | * 查询设备产品过程参数采集 |
| | |
| | | void addTighteningParameters(DaParamCollection daParamCollection); |
| | | |
| | | void saveCampaignTimeParameters(DaParamCollection daParamCollection); |
| | | |
| | | void saveBeachDaParamCollection(List<DaParamCollection> list); |
| | | |
| | | void insertBatch(List<DaParamCollection> confList); |
| | | |
| | | void replaceAssemblyCode(DaParamCollection daParamCollection); |
| | | |
| | | void yzAddBasicParameters(DaParamCollection daParamCollection); |
| | | |
| | | void jrmSaveCampaignTimeParameters(DaParamCollection daParamCollection); |
| | | void sendToFactoryMes(String stationCode,String productNum ); |
| | | |
| | | void pushGeelycvMesFeedback(String packID,String stationCode); |
| | | |
| | | void automaticWorkstationPushGeelycvMesFeedback(String packID,String stationCode,List<DaParamCollection> list); |
| | | |
| | | AjaxResult checkRecordDataDone(DaParamCollection daParamCollection); |
| | | |
| | | void enterWeighing(DaParamCollection daParamCollection); |
| | | |
| | | void manualWorkstationsAddBasicParameters(DaParamCollection daParamCollection); |
| | | |
| | | void preInstallOut(DaParamCollection daParamCollection); |
| | | |
| | | AjaxResult addRepairTighteningData(DaParamCollection daParamCollection); |
| | | } |