Delete IOSSFileService.java

pull/3958/head
JEECG 2022-07-20 18:14:42 +08:00 committed by GitHub
parent 5158e6e5ec
commit 0e749d830b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}