mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-10-07 00:15:15 +08:00
16 lines
347 B
Java
16 lines
347 B
Java
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;
|
|
}
|