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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.web.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
 
import java.util.List;
 
//PQC巡检录入
public interface PQCPatrolCheckService {
     ApiResponseResult getLineNo(String userNo) throws Exception;
     ApiResponseResult getLineNosj(String userNo) throws Exception;
     ApiResponseResult getLineNoFQC(String userNo) throws Exception;
 
    ApiResponseResult getWorkOrderData(String workOrderNo) throws Exception;
 
    ApiResponseResult getProccInfoT(String userNo) throws Exception;
    ApiResponseResult getProccInfoTsj(String userNo) throws Exception;
 
     ApiResponseResult getLineSelect(String userNo, String lineNo, String taskNo) throws Exception;
 
    ApiResponseResult getBillSelect2(String userNo, String lineNo, String taskNo) throws Exception;
 
    ApiResponseResult getBillSelect2FQC(String userNo, String lineNo, String taskNo) throws Exception;
    ApiResponseResult getBillSelectSJ(String userNo, String lineNo, String taskNo) throws Exception;
    ApiResponseResult getBillSelect2OQC(String userNo, String lineNo, String taskNo) throws Exception;
 
     ApiResponseResult getBillSelect(String userNo, String lineNo, String taskNo) throws Exception;
 
    ApiResponseResult getprocessBillSelect(String userNo, String lineNo, String taskNo) throws Exception;
 
     ApiResponseResult getDetails(String userNo, String checkNo, int pid) throws Exception;
 
 
    ApiResponseResult checkDetailSave(String userNo, String checkNo, int pid, String checkResult, String checkDemo, String checkNum)throws Exception;
 
 ApiResponseResult checkDetailPass(String userNo, String checkNo)throws Exception;
 
     ApiResponseResult submitData(String userNo, String checkNo, int type)throws Exception;
 
    ApiResponseResult submitData2(String userNo, String checkNo, int type)throws Exception;
    ApiResponseResult submitData2FQC(String userNo, String checkNo, int type)throws Exception;
    ApiResponseResult submitData2OQC(String userNo, String checkNo, int type,String conformity)throws Exception;
 
     ApiResponseResult checkDetailDel(String userNo, String checkNo, int pid, String checkResult, String checkDemo) throws Exception;
    // 获取时间段数据源
    ApiResponseResult getPeriod(String factory, String company, String classNo, String proc) throws Exception;
 
    // 获取批号下拉数据源
    ApiResponseResult getPatrolBatchNum(String factory, String company, String ftype, String period,
            String procno, String modelno, String keyword) throws Exception;
 
    // 获取批号详细信息
    ApiResponseResult getPatrolBatchNumInfo(String factory, String company, String userNo, String lineType,String procNo,
            String lotNo, String classNo, String period) throws Exception;
 
    // PQC巡检项目-列表
    ApiResponseResult getPQCItemList(String factory, String company, String userNo, String keyword, int page,
            int size) throws Exception;
 
    // 修改PQC巡检项目-列表
    ApiResponseResult sumbitPQCItem(String factory, String company, String mid, String userNo, String operaType)
            throws Exception;
    
    ApiResponseResult getOkResult(String factory, String company,String userNo,
            String mid)throws Exception;
    
    //获取巡检操作记录
    ApiResponseResult getRecordList(String factory, String company,String user,String ftype,String mid,String keyword,
            int size,int page)throws Exception;
 
    ApiResponseResult getBillReturn(String billNo)throws Exception;
 
    ApiResponseResult getcheckinfo(String userNo,String taskNo,String checkNo)throws Exception;
 
 
    ApiResponseResult test() throws Exception;
 
    List getDataPrc(String prcName, String floor) throws Exception;
 
}