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.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
import org.springframework.web.multipart.MultipartFile;
 
import javax.servlet.http.HttpServletResponse;
 
public interface EquipmentInspectionService {
    ApiResponseResult getDateByDianJianCode(String dianJianCode, String type, String user,String billNo) throws Exception;
 
    ApiResponseResult getMachineCode(String machineCode,String keyword,String type,String searchType,String billNo) throws Exception;
 
    ApiResponseResult updataValue(String factory, String company, String user, String id, String tableName, String fieldName, String fieldVal) throws Exception;
 
    ApiResponseResult getRecordList(String type, String id, String keyword, String size, String page) throws Exception;
 
    ApiResponseResult uploadFileDianjian(String factory, String company, String username, int mid, int type, String note, MultipartFile[] files) throws Exception;
 
    ApiResponseResult getFilesList(String mid)throws Exception;
 
    ApiResponseResult onlineView(String url, String fname, HttpServletResponse response)throws Exception;
}