mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-10-01 21:45:15 +08:00
16 lines
359 B
Java
16 lines
359 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(String token) throws InvocationTargetException, IllegalAccessException;
|
|
}
|