package com.web.ftp.service; import javax.servlet.http.HttpServletResponse; import org.springframework.web.multipart.MultipartFile; import com.app.base.data.ApiResponseResult; import java.io.IOException; public interface FileCheckService { public ApiResponseResult uploadFilepqc(String factory,String company,String functionName,String username,String billNo, int type,String note, MultipartFile[] file) throws Exception; public ApiResponseResult getFilesList(String billNo,String functionName) throws Exception; public ApiResponseResult onlineView(String url, String fname,HttpServletResponse response) throws Exception; ApiResponseResult onlineViewPdf(String url, int i, String account, String password, String path, String fileName, String root, HttpServletResponse response) throws IOException; }