mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-12 00:12:16 +00:00
27 lines
493 B
TypeScript
27 lines
493 B
TypeScript
export interface GetUnitByUuidInterface {
|
|
uuid: string;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
name: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface UnitChildInterface {
|
|
uuid: string;
|
|
name: string;
|
|
type: string;
|
|
totalCount?: number;
|
|
children?: UnitChildInterface[];
|
|
}
|
|
export interface UnitParentInterface {
|
|
uuid: string;
|
|
name: string;
|
|
type: string;
|
|
parent?: UnitParentInterface;
|
|
}
|
|
export interface RenameUnitByUuidInterface {
|
|
uuid: string;
|
|
name: string;
|
|
type: string;
|
|
}
|