1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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;
| }
|
|