Files
admin-vben5/apps/web-antd/src/api/property/building/model.d.ts
dev_ljl 8f6dc2ba11
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
fix:建筑管理、楼层管理
2025-07-30 15:27:32 +08:00

178 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { BaseEntity, PageQuery } from '#/api/common';
export interface BuildingVO {
/**
*
*/
id: string | number;
/**
* 园区编码
*/
communityId: string | number;
/**
* 建筑名称
*/
buildingName: string;
/**
* 总层数
*/
floorCount: number;
/**
* 单元数
*/
unitCount: number;
/**
* 建筑类型('1住宅','2商业','3:混合')
*/
buildType: string;
/**
* 电梯数量
*/
elevatorCount: number;
/**
* 竣工日期
*/
completionDate: string;
/**
* 地址
*/
addr: string;
/**
* 经度
*/
lon: string;
/**
* 维度
*/
lat: string;
}
export interface BuildingForm extends BaseEntity {
/**
*
*/
id?: string | number;
/**
* 园区编码
*/
communityId?: string | number;
/**
* 建筑名称
*/
buildingName?: string;
/**
* 总层数
*/
floorCount?: number;
/**
* 单元数
*/
unitCount?: number;
/**
* 建筑类型('1住宅','2商业','3:混合')
*/
buildType?: number;
/**
* 电梯数量
*/
elevatorCount?: number;
/**
* 竣工日期
*/
completionDate?: string;
/**
* 地址
*/
addr?: string;
/**
* 经度
*/
lon?: string;
/**
* 维度
*/
lat?: string;
}
export interface BuildingQuery extends PageQuery {
/**
* 园区编码
*/
communityId?: string | number;
/**
* 建筑名称
*/
buildingName?: string;
/**
* 总层数
*/
floorCount?: number;
/**
* 单元数
*/
unitCount?: number;
/**
* 建筑类型('1住宅','2商业','3:混合')
*/
buildType?: number;
/**
* 电梯数量
*/
elevatorCount?: number;
/**
* 竣工日期
*/
completionDate?: string;
/**
* 地址
*/
addr?: string;
/**
* 经度
*/
lon?: string;
/**
* 维度
*/
lat?: string;
/**
* 排序字段
*/
sort?: number;
/**
* 日期范围参数
*/
params?: any;
}