package org.jeecg.modules.system.service; import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletResponse; /** * * @ClassName: IAliUploadService
* @Description: TODO
* @author yk
* @date 2021年4月6日
*/ public interface IAliUploadService { public String uploadFile(MultipartFile file) throws Exception; public void downloadFile(HttpServletResponse response, String url, String fileName); }