chore: models

This commit is contained in:
2025-08-07 21:34:01 +08:00
parent ee6c37f0ae
commit 1746334a8f
19 changed files with 474 additions and 0 deletions

View File

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