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