“linengliang”
2023-10-10 fbd45b5367da79ca5001fe7aba53b3220b5e1384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.jeecg.modules.system.service;
 
import org.springframework.web.multipart.MultipartFile;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * 
 * @ClassName: IAliUploadService</br>
 * @Description: TODO</br>
 * @author yk</br>
 * @date 2021年4月6日</br>
 */
public interface IAliUploadService {
 
    public String uploadFile(MultipartFile file) throws Exception;
 
    public void downloadFile(HttpServletResponse response, String url, String fileName);
 
}