feat:房间详情

This commit is contained in:
2025-09-05 17:16:34 +08:00
parent 058faa3bc2
commit 4ef34199b0
3 changed files with 130 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ export interface RoomVO {
* 房间类型('住宅','商铺','办公室','设备间','公共区域')
*/
roomType: string;
roomTypeName: string;
/**
* 建筑面积(平方米)
@@ -50,6 +51,40 @@ export interface RoomVO {
* 状态('空置','已售','已租','自用'
*/
status: string;
/**
* 房间图片
*/
imgUrl: string;
imgPath: string;
/**
* 是否重要
*/
isMatter: string;
/**
* 状态
*/
statusName: string;
/**
* 小区
*/
communityText: string;
/**
* 建筑
*/
buildingText: string;
/**
* 楼层
*/
floorText: string;
/**
* 所属单位
*/
residentUnitText: string;
}