1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-14 20:41:38 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

后端获取文件列表 Api 完成

This commit is contained in:
2022-04-10 16:09:35 +08:00
parent 8cfdf78eaf
commit dc1e8ee810
11 changed files with 205 additions and 171 deletions

View File

@@ -0,0 +1,15 @@
package plus.bookshelf.Service.Service;
import plus.bookshelf.Service.Model.FileModel;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
public interface FileService {
/**
* 列出所有文件
*
* @return
*/
List<FileModel> list() throws InvocationTargetException, IllegalAccessException;
}