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

101 lines
1.2 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-27 17:56:05 +08:00
id: string | number;
2025-06-18 11:03:42 +08:00
/**
*
*/
communityCode: string;
/**
*
*/
buildingCode: string;
/**
*
*/
floorCode: number;
/**
*
*/
floorName: string;
/**
*
*/
orgCode: string;
}
export interface FloorForm extends BaseEntity {
/**
2025-06-19 09:50:46 +08:00
* ID
2025-06-18 11:03:42 +08:00
*/
id?: string | number;
/**
*
*/
communityCode?: string;
/**
*
*/
buildingCode?: string;
/**
*
*/
floorCode?: number;
/**
*
*/
floorName?: string;
/**
*
*/
orgCode?: string;
}
export interface FloorQuery extends PageQuery {
/**
*
*/
communityCode?: string;
/**
*
*/
buildingCode?: string;
/**
*
*/
floorCode?: number;
/**
*
*/
floorName?: string;
/**
*
*/
orgCode?: string;
/**
* 10
*/
dataState?: number;
/**
*
*/
params?: any;
}