4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.web.jhsop.service;
 
import com.app.base.data.ApiResponseResult;
 
public interface JhSopDataService {
    //获取工单数据
    ApiResponseResult getManufactoryList() throws Exception;
 
    ApiResponseResult getProcessLine(String workOrder) throws Exception;
 
    //根据工单和工序线体获取文件
    ApiResponseResult getFile(String manufactory, String processLIne);
 
 
    ApiResponseResult scanProduct(String line, String proc, String taskNo, String user, String sn, String procOrder, String procName);
 
    ApiResponseResult scanMaterial(String line, String proc, String user, String taskNo, String barcode, String sn, String procOrder, String procName);
 
    ApiResponseResult queryPass(String proc, String taskNo, String num);
 
    ApiResponseResult queryPerson(String user);
}