12 lines
360 B
Java
12 lines
360 B
Java
package com.supervision.manage.service;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
public interface FileManageService {
|
|
String uploadFile(MultipartFile multipartFile, String contentType) throws Exception;
|
|
|
|
void downloadFile(String fileId, HttpServletResponse response) throws Exception;
|
|
}
|