This commit is contained in:
102
apps/web-antd/src/api/property/floor/model.d.ts
vendored
102
apps/web-antd/src/api/property/floor/model.d.ts
vendored
@@ -1,21 +1,15 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
|
||||
export interface FloorVO {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
id: string | number;
|
||||
/**
|
||||
* 社区编码
|
||||
*/
|
||||
communityCode: string;
|
||||
|
||||
/**
|
||||
* 建筑名称
|
||||
* 单元编码
|
||||
*/
|
||||
buildingCode: string;
|
||||
|
||||
/**
|
||||
* 楼层编码
|
||||
*/
|
||||
floorCode: number;
|
||||
unitId: string | number;
|
||||
|
||||
/**
|
||||
* 楼层数名称
|
||||
@@ -23,32 +17,37 @@ export interface FloorVO {
|
||||
floorName: string;
|
||||
|
||||
/**
|
||||
* 组织编码
|
||||
* 楼层号
|
||||
*/
|
||||
orgCode: string;
|
||||
floorNumber: number;
|
||||
|
||||
/**
|
||||
* 楼层类型
|
||||
*/
|
||||
floorType: number;
|
||||
|
||||
/**
|
||||
* 房间数量
|
||||
*/
|
||||
roomCount: number;
|
||||
|
||||
/**
|
||||
* 层高
|
||||
*/
|
||||
floorHeight: number;
|
||||
|
||||
}
|
||||
|
||||
export interface FloorForm extends BaseEntity {
|
||||
/**
|
||||
* ID
|
||||
*
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 社区编码
|
||||
* 单元编码
|
||||
*/
|
||||
communityCode?: string;
|
||||
|
||||
/**
|
||||
* 建筑名称
|
||||
*/
|
||||
buildingCode?: string;
|
||||
|
||||
/**
|
||||
* 楼层编码
|
||||
*/
|
||||
floorCode?: number;
|
||||
unitId?: string | number;
|
||||
|
||||
/**
|
||||
* 楼层数名称
|
||||
@@ -56,27 +55,32 @@ export interface FloorForm extends BaseEntity {
|
||||
floorName?: string;
|
||||
|
||||
/**
|
||||
* 组织编码
|
||||
* 楼层号
|
||||
*/
|
||||
orgCode?: string;
|
||||
floorNumber?: number;
|
||||
|
||||
/**
|
||||
* 楼层类型
|
||||
*/
|
||||
floorType?: number;
|
||||
|
||||
/**
|
||||
* 房间数量
|
||||
*/
|
||||
roomCount?: number;
|
||||
|
||||
/**
|
||||
* 层高
|
||||
*/
|
||||
floorHeight?: number;
|
||||
|
||||
}
|
||||
|
||||
export interface FloorQuery extends PageQuery {
|
||||
/**
|
||||
* 社区编码
|
||||
* 单元编码
|
||||
*/
|
||||
communityCode?: string;
|
||||
|
||||
/**
|
||||
* 建筑名称
|
||||
*/
|
||||
buildingCode?: string;
|
||||
|
||||
/**
|
||||
* 楼层编码
|
||||
*/
|
||||
floorCode?: number;
|
||||
unitId?: string | number;
|
||||
|
||||
/**
|
||||
* 楼层数名称
|
||||
@@ -84,14 +88,24 @@ export interface FloorQuery extends PageQuery {
|
||||
floorName?: string;
|
||||
|
||||
/**
|
||||
* 组织编码
|
||||
* 楼层号
|
||||
*/
|
||||
orgCode?: string;
|
||||
floorNumber?: number;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
* 楼层类型
|
||||
*/
|
||||
dataState?: number;
|
||||
floorType?: number;
|
||||
|
||||
/**
|
||||
* 房间数量
|
||||
*/
|
||||
roomCount?: number;
|
||||
|
||||
/**
|
||||
* 层高
|
||||
*/
|
||||
floorHeight?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
|
Reference in New Issue
Block a user