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