1、房屋收费
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

2、退费审核
3、房间添加套内面积
This commit is contained in:
2025-07-18 18:40:13 +08:00
parent 8c606397df
commit a5f93c3a6c
21 changed files with 1801 additions and 96 deletions

View File

@@ -2,7 +2,7 @@ import type { PageQuery, BaseEntity } from '#/api/common';
export interface RoomVO {
/**
*
*
*/
id: string | number;
@@ -22,10 +22,15 @@ export interface RoomVO {
roomType: number;
/**
* 面积(平方米)
* 建筑面积(平方米)
*/
area: number;
/**
* 套内面积(平方米)
*/
insideInArea: number;
/**
* 户型(如2室1厅1卫)
*/
@@ -50,7 +55,7 @@ export interface RoomVO {
export interface RoomForm extends BaseEntity {
/**
*
*
*/
id?: string | number;