春风项目四线(合箱线、总装线)
wujian
2024-09-10 51b05b093fa15dd477981372f67ae7b3b2747733
提交 | 用户 | 时间
59e228 1 package com.jcdm.main.da.passingStationCollection.service;
W 2
3 import com.jcdm.main.da.passingStationCollection.domain.ProductNewPassStation;
4 import com.jcdm.main.da.tileMatchCollection.domain.ReceiveDataVO;
8876c2 5 import org.apache.ibatis.annotations.Param;
59e228 6
W 7 import java.util.List;
8
9 /**
10  * 产品过站采集Service接口
11  * 
12  * @author yyt
13  * @date 2023-12-12
14  */
15 public interface ProductNewPassStationService
16 {
17     public ProductNewPassStation getPassStation(ProductNewPassStation productNewPassStation);
18
19     public List<ProductNewPassStation> getProductPassStationList(ProductNewPassStation productNewPassStation);
8876c2 20     public List<ProductNewPassStation> getProductPassStationListByEngineList(List<String> engineNoList);
59e228 21
W 22     public void updatePassStationBySfcCode(String sfcCode);
51b05b 23     public void updateBoxCodeBySfcCode(String sfcCode,String newBoxCode);
59e228 24
W 25     public void insertPassStation(ProductNewPassStation productNewPassStation);
26
27     public ReceiveDataVO getDetailData() throws Exception;
28
29 }