This commit is contained in:
lxj
2025-08-05 09:49:10 +08:00
20 changed files with 694 additions and 420 deletions

View File

@@ -59,7 +59,7 @@ export interface AssetVO {
/**
* 固定资产类型
*/
type: number;
type: string;
/**
* 创建时间

View File

@@ -61,9 +61,9 @@ export function floorRemove(id: ID | IDS) {
}
/**
* 根据单元ID查询楼层
* 根据楼层ID查询楼层
* @param id id
*/
export function queryByUnitId(id: ID | IDS) {
return requestClient.get<FloorVO[]>(`/property/floor/queryByUnitId/${id}`);
export function queryByBuildingId(id: ID | IDS) {
return requestClient.get<FloorVO[]>(`/property/floor/queryByBuildingId/${id}`);
}

View File

@@ -96,6 +96,22 @@ export interface ElevatorInfoVO {
*/
controlPwd: string
elevatorControlDeviceId: {
value: number,
deviceIp: string,
deviceId: number,
}
remoteCallElevatorDeviceId: {
value: number,
deviceIp: string,
deviceId: number,
}[]
/**
* 建筑ID
*/
buildingId?: number | string
}
export interface ElevatorInfoForm extends BaseEntity {
@@ -195,10 +211,9 @@ export interface ElevatorInfoForm extends BaseEntity {
controlPwd?: string
/**
* 单元ID
* 建筑ID
*/
unitId?: number
buildingId?: number
}
export interface ElevatorInfoQuery extends PageQuery {
@@ -299,9 +314,9 @@ export interface ElevatorInfoQuery extends PageQuery {
}
export interface ElevatorFloorRefVo {
/**
*
*/
/**
*
*/
elevatorId: string | number
/**