1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.web.pda.lyt.ftp.service;
 
import com.app.base.data.ApiResponseResult;
import org.springframework.web.multipart.MultipartFile;
 
import javax.servlet.http.HttpServletResponse;
 
//样品签名
public interface FileSampleSignService {
    
    public ApiResponseResult uploadFilepqc(String factory,String company,String username,int mid,int type,String note,  MultipartFile[] file) throws Exception;
    
    public ApiResponseResult getFilesList(String mid) throws Exception;
    
    public ApiResponseResult onlineView(String url, String fname,HttpServletResponse response) throws Exception;
}