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 FileCheckLytService { public ApiResponseResult uploadFilepqc(String factory,String company,String username,int mid,int type,String note, MultipartFile[] file) throws Exception; public ApiResponseResult uploadFileIpqc(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; }