4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.web.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
import org.springframework.web.multipart.MultipartFile;
 
import javax.servlet.http.HttpServletResponse;
 
//ftp
public interface FileCheckService {
    
    public ApiResponseResult uploadFilepqc(String username,String mid, MultipartFile[] file) throws Exception;
    
    public ApiResponseResult getFilesList(String mid) throws Exception;
    
    public ApiResponseResult onlineView(String url, String fname,HttpServletResponse response) throws Exception;
}