### What problem does this PR solve? fix: cannot save the system model setting #468 feat: rename file in FileManager feat: add FileManager feat: override useSelector type ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
7
web/src/interfaces/request/base.ts
Normal file
7
web/src/interfaces/request/base.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface IPaginationRequestBody {
|
||||
keywords?: string;
|
||||
page?: number;
|
||||
page_size?: number; // name|create|doc_num|create_time|update_time,default:create_time
|
||||
orderby?: string;
|
||||
desc?: string;
|
||||
}
|
||||
5
web/src/interfaces/request/file-manager.ts
Normal file
5
web/src/interfaces/request/file-manager.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { IPaginationRequestBody } from './base';
|
||||
|
||||
export interface IFileListRequestBody extends IPaginationRequestBody {
|
||||
parent_id?: string; // folder id
|
||||
}
|
||||
Reference in New Issue
Block a user