This commit is contained in:
9
apps/web-antd/src/api/common.d.ts
vendored
9
apps/web-antd/src/api/common.d.ts
vendored
@@ -38,5 +38,14 @@ export interface PageQuery {
|
||||
orderByColumn?: string;
|
||||
pageNum?: number;
|
||||
pageSize?: number;
|
||||
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export interface TreeNode<T = any> {
|
||||
level: number;
|
||||
code: T;
|
||||
ParentCode: T;
|
||||
label: string;
|
||||
children: TreeNode<T>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user