feat:房间详情展示入驻面积

This commit is contained in:
2025-09-08 10:49:08 +08:00
parent 2986b3b96f
commit 7bd83ab54d
2 changed files with 14 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type {PageQuery, BaseEntity} from '#/api/common';
export interface Resident_unitVO {
/**
@@ -67,8 +67,8 @@ export interface Resident_unitVO {
*/
authGroupName?: string;
// 授权期限
authBegDate?:string;//开始
authEndDate?:string;//结束
authBegDate?: string;//开始
authEndDate?: string;//结束
}
@@ -177,8 +177,8 @@ export interface Resident_unitQuery extends PageQuery {
number?: number;
/**
* 日期范围参数
*/
* 日期范围参数
*/
params?: any;
}
@@ -240,4 +240,9 @@ export interface Unit extends BaseEntity {
*/
remark?: string;
/**
* 入驻面积
*/
area?: string;
}