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; }