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
package com.web.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
 
public interface SJPatrolService {
 
 
    ApiResponseResult getBillSelect(String userNo, String taskNo) throws Exception;
 
    ApiResponseResult getDetails(String userNo, String checkNo, int pid);
 
    ApiResponseResult checkDetailSave(String userNo, String checkNo, int pid, String checkResult, String checkDemo, String checkNum);
 
    ApiResponseResult submitData(String userNo, String checkNo, int type);
 
    ApiResponseResult getSJBillSelect(String userNo, String taskNo);
 
    ApiResponseResult getSJDetails(String userNo, String checkNo, int pid);
 
    ApiResponseResult checkDetailSaveSJ(String userNo, String checkNo, int pid, String checkResult, String checkDemo, String checkNum);
 
    ApiResponseResult submitDataSJ(String userNo, String checkNo, int type, String conformity);
}