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