1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-11 02:05:15 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

删除文件对象功能完成;其他小调整

This commit is contained in:
2022-04-22 21:36:14 +08:00
parent 3757e19b7d
commit bce782b356
12 changed files with 437 additions and 274 deletions

View File

@@ -93,4 +93,13 @@ public interface FileObjectService {
* @throws BusinessException
*/
List<FileObjectModel> getFileObjectListByFileId(Integer fileId) throws InvocationTargetException, IllegalAccessException, BusinessException;
/**
* 删除文件对象
*
* @param fileObjectId
* @return
* @throws BusinessException
*/
Integer deleteFileObject(Integer fileObjectId) throws BusinessException;
}