Delete IOSSFileService.java

pull/5714/head
JEECG 2022-07-20 18:14:42 +08:00 committed by GitHub
parent de060bace3
commit 544547939e
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
package org.jeecg.modules.oss.service;
import java.io.IOException;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.oss.entity.OssFile;
import org.springframework.web.multipart.MultipartFile;
/**
* @Description: OOSservice
* @author: jeecg-boot
*/
public interface IOssFileService extends IService<OssFile> {
/**
* oss
* @param multipartFile
* @throws IOException
*/
void upload(MultipartFile multipartFile) throws IOException;
/**
* oss
* @param ossFile OSSFile
* @return
*/
boolean delete(OssFile ossFile);
}