This repository has been archived on 2025-11-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ndm-web-client-r/src/apis/models/base/model.ts
2025-08-07 21:34:01 +08:00

19 lines
324 B
TypeScript

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
}