mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-16 18:56:22 +00:00
32 lines
617 B
TypeScript
32 lines
617 B
TypeScript
export interface GetBuildingByUuidInterface {
|
|
uuid: string;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
name: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface BuildingChildInterface {
|
|
uuid: string;
|
|
name: string;
|
|
type: string;
|
|
totalCount?: number;
|
|
children?: BuildingChildInterface[];
|
|
}
|
|
export interface BuildingParentInterface {
|
|
uuid: string;
|
|
name: string;
|
|
type: string;
|
|
parent?: BuildingParentInterface;
|
|
}
|
|
export interface RenameBuildingByUuidInterface {
|
|
uuid: string;
|
|
name: string;
|
|
type: string;
|
|
}
|
|
export interface GetBuildingByUserUuidInterface {
|
|
uuid: string;
|
|
name: string;
|
|
type: string;
|
|
}
|