feat:房间添加是否重要、房间图片字段
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-31 11:40:57 +08:00
parent ea9eda3973
commit b7ecd38f59
3 changed files with 37 additions and 49 deletions

View File

@@ -19,7 +19,7 @@ export interface RoomVO {
/**
* 房间类型('住宅','商铺','办公室','设备间','公共区域')
*/
roomType: number;
roomType: string;
/**
* 建筑面积(平方米)
@@ -49,7 +49,7 @@ export interface RoomVO {
/**
* 状态('空置','已售','已租','自用'
*/
status: number;
status: string;
}