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

115 lines
1.3 KiB
TypeScript
Raw Normal View History

2025-06-18 11:03:42 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface FloorVO {
2025-06-28 02:41:09 +08:00
/**
*
*/
2025-06-27 17:56:05 +08:00
id: string | number;
2025-06-28 02:41:09 +08:00
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
unitId: string | 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
floorName: string;
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
floorNumber: 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
floorType: 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
roomCount: number;
/**
*
*/
floorHeight: number;
2025-06-18 11:03:42 +08:00
}
export interface FloorForm extends BaseEntity {
/**
2025-06-28 02:41:09 +08:00
*
2025-06-18 11:03:42 +08:00
*/
id?: string | number;
/**
2025-06-28 02:41:09 +08:00
*
2025-06-18 11:03:42 +08:00
*/
2025-06-28 02:41:09 +08:00
unitId?: string | 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
floorName?: string;
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
floorNumber?: 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
floorType?: number;
/**
*
*/
roomCount?: 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
floorHeight?: number;
2025-06-18 11:03:42 +08:00
}
export interface FloorQuery extends PageQuery {
/**
2025-06-28 02:41:09 +08:00
*
2025-06-18 11:03:42 +08:00
*/
2025-06-28 02:41:09 +08:00
unitId?: string | 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
floorName?: string;
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
floorNumber?: 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
floorType?: 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
roomCount?: 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
floorHeight?: number;
2025-06-18 11:03:42 +08:00
/**
*
*/
params?: any;
}