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
package com.web.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
 
public interface HoPatrolCheckService {
    public ApiResponseResult getLineNo(String userNo) throws Exception;
 
    public ApiResponseResult getProccInfoT(String userNo) throws Exception;
 
    public ApiResponseResult getLineSelect(String userNo, String lineNo, String taskNo) throws Exception;
 
    public ApiResponseResult getBillSelect(String userNo, String lineNo, String taskNo) throws Exception;
 
    public ApiResponseResult getprocessBillSelect(String userNo, String lineNo, String taskNo) throws Exception;
 
    public ApiResponseResult getDetails(String userNo, String checkNo, int pid) throws Exception;
 
    public ApiResponseResult checkDetailSave(String userNo, String checkNo, int pid, String checkResult, String checkDemo) throws Exception;
 
    public ApiResponseResult checkDetailPass(String userNo, String checkNo)throws Exception;
 
    public ApiResponseResult submitData(String userNo, String checkNo, int type)throws Exception;
 
    public ApiResponseResult checkDetailDel(String userNo, String checkNo, int pid, String checkResult, String checkDemo,String type) throws Exception;
}