Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
This commit is contained in:
@@ -59,7 +59,7 @@ export interface AssetVO {
|
||||
/**
|
||||
* 固定资产类型
|
||||
*/
|
||||
type: number;
|
||||
type: string;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
|
@@ -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}`);
|
||||
}
|
||||
|
@@ -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
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user