Files
admin-vben5/apps/web-antd/src/api/property/building/model.d.ts

178 lines
2.0 KiB
TypeScript
Raw Normal View History

2025-06-28 22:49:40 +08:00
import type { BaseEntity, PageQuery } from '#/api/common';
2025-06-18 11:03:42 +08:00
export interface BuildingVO {
/**
2025-06-26 17:59:00 +08:00
*
2025-06-18 11:03:42 +08:00
*/
id: string | number;
/**
*
*/
2025-06-28 02:41:09 +08:00
communityId: string | number;
2025-06-18 11:03:42 +08:00
/**
*
*/
buildingName: string;
2025-06-28 02:41:09 +08:00
/**
*
*/
floorCount: number;
/**
*
*/
unitCount: number;
/**
* ('1住宅','2商业','3:混合')
*/
2025-07-30 15:27:32 +08:00
buildType: string;
2025-06-28 02:41:09 +08:00
/**
*
*/
elevatorCount: number;
/**
*
*/
completionDate: string;
2025-06-18 11:03:42 +08:00
/**
*
*/
addr: string;
/**
*
*/
lon: string;
/**
*
*/
lat: string;
}
export interface BuildingForm extends BaseEntity {
/**
2025-06-26 17:59:00 +08:00
*
2025-06-18 11:03:42 +08:00
*/
id?: string | number;
/**
*
*/
2025-06-28 02:41:09 +08:00
communityId?: string | number;
2025-06-18 11:03:42 +08:00
/**
*
*/
buildingName?: string;
/**
2025-06-28 02:41:09 +08:00
*
2025-06-18 11:03:42 +08:00
*/
2025-06-28 02:41:09 +08:00
floorCount?: number;
2025-06-18 11:03:42 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-18 11:03:42 +08:00
*/
2025-06-28 02:41:09 +08:00
unitCount?: number;
2025-06-18 11:03:42 +08:00
/**
2025-06-28 02:41:09 +08:00
* ('1住宅','2商业','3:混合')
2025-06-18 11:03:42 +08:00
*/
2025-06-28 02:41:09 +08:00
buildType?: number;
2025-06-18 11:03:42 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-18 11:03:42 +08:00
*/
2025-06-28 02:41:09 +08:00
elevatorCount?: number;
2025-06-18 11:03:42 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-18 11:03:42 +08:00
*/
2025-06-28 02:41:09 +08:00
completionDate?: string;
2025-06-18 11:03:42 +08:00
/**
*
*/
addr?: string;
/**
*
*/
lon?: string;
/**
*
*/
lat?: string;
2025-06-28 02:41:09 +08:00
}
export interface BuildingQuery extends PageQuery {
2025-06-19 09:50:46 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-19 09:50:46 +08:00
*/
2025-06-28 02:41:09 +08:00
communityId?: string | number;
2025-06-19 09:50:46 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-19 09:50:46 +08:00
*/
2025-06-28 02:41:09 +08:00
buildingName?: string;
2025-06-19 09:50:46 +08:00
2025-06-26 17:59:00 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-26 17:59:00 +08:00
*/
2025-06-28 02:41:09 +08:00
floorCount?: number;
2025-06-26 17:59:00 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-26 17:59:00 +08:00
*/
2025-06-28 02:41:09 +08:00
unitCount?: number;
2025-06-26 17:59:00 +08:00
/**
2025-06-28 02:41:09 +08:00
* ('1住宅','2商业','3:混合')
2025-06-26 17:59:00 +08:00
*/
2025-06-28 02:41:09 +08:00
buildType?: number;
2025-06-26 17:59:00 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-26 17:59:00 +08:00
*/
2025-06-28 02:41:09 +08:00
elevatorCount?: number;
2025-06-26 17:59:00 +08:00
/**
2025-06-28 02:41:09 +08:00
*
2025-06-26 17:59:00 +08:00
*/
2025-06-28 02:41:09 +08:00
completionDate?: string;
2025-06-26 17:59:00 +08:00
/**
*
*/
addr?: string;
/**
*
*/
lon?: string;
/**
*
*/
lat?: string;
/**
*
*/
sort?: number;
/**
2025-06-28 22:49:40 +08:00
*
*/
2025-06-26 17:59:00 +08:00
params?: any;
}