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