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.
virtual-patient/virtual-patient-manage/src/main/java/com/supervision/manage/service/FileManageService.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;
}