You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
360 B
Java
12 lines
360 B
Java
1 year ago
|
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;
|
||
|
}
|