春风项目四线(合箱线、总装线)
wujian
2024-07-26 778d3d8b387ca0a8d1b51ef68f783fb0b407ef20
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
package com.jcdm.main.da.passingStationCollection.service;
 
import com.jcdm.main.da.passingStationCollection.domain.ProductNewPassStation;
import com.jcdm.main.da.tileMatchCollection.domain.ReceiveDataVO;
 
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 void updatePassStationBySfcCode(String sfcCode);
 
    public void insertPassStation(ProductNewPassStation productNewPassStation);
 
    public ReceiveDataVO getDetailData() throws Exception;
 
}