This commit is contained in:
yangsy
2025-08-14 03:22:59 +08:00
parent eab84c1e83
commit a7f9e1c272
13 changed files with 69 additions and 82 deletions

View File

@@ -1,18 +1,18 @@
export interface SuperModel {
id: string
createdBy: string
createdTime: string
echoMap?: any
id: string;
createdBy: string;
createdTime: string;
echoMap?: any;
}
export interface BaseModel extends SuperModel {
updatedBy: string
updatedTime: string
updatedBy: string;
updatedTime: string;
}
export interface TreeModel extends BaseModel {
parentId: string
sortValue: number
treeGrade: number
treePath: string
parentId: string;
sortValue: number;
treeGrade: number;
treePath: string;
}