feat(sis): 电梯信息关联楼层
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-08-04 23:31:39 +08:00
parent 98d6dd0d9b
commit 17c7bc0512
4 changed files with 94 additions and 20 deletions

View File

@@ -107,6 +107,11 @@ export interface ElevatorInfoVO {
deviceIp: string,
deviceId: number,
}[]
/**
* 建筑ID
*/
buildingId?: number | string
}
export interface ElevatorInfoForm extends BaseEntity {
@@ -206,10 +211,9 @@ export interface ElevatorInfoForm extends BaseEntity {
controlPwd?: string
/**
* 单元ID
* 建筑ID
*/
unitId?: number
buildingId?: number
}
export interface ElevatorInfoQuery extends PageQuery {