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

160 lines
1.8 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-18 16:50:58 +08:00
*
2025-06-18 11:03:42 +08:00
*/
id: string | number;
/**
*
*/
communityCode: string;
/**
*
*/
buildingCode: string;
/**
*
*/
floorCode: number;
/**
*
*/
floorName: string;
/**
*
*/
orgCode: string;
/**
* 10
*/
dataState: number;
2025-06-18 16:50:58 +08:00
/**
*
*/
createEmpId: string | number;
/**
*
*/
modifyTime: string;
/**
*
*/
searchValue: string;
2025-06-18 11:03:42 +08:00
}
export interface FloorForm extends BaseEntity {
/**
2025-06-18 16:50:58 +08:00
*
2025-06-18 11:03:42 +08:00
*/
id?: string | number;
/**
*
*/
communityCode?: string;
/**
*
*/
buildingCode?: string;
/**
*
*/
floorCode?: number;
/**
*
*/
floorName?: string;
/**
*
*/
orgCode?: string;
/**
* 10
*/
dataState?: number;
2025-06-18 16:50:58 +08:00
/**
*
*/
createEmpId?: string | number;
/**
*
*/
modifyTime?: string;
/**
*
*/
searchValue?: string;
2025-06-18 11:03:42 +08:00
}
export interface FloorQuery extends PageQuery {
/**
*
*/
communityCode?: string;
/**
*
*/
buildingCode?: string;
/**
*
*/
floorCode?: number;
/**
*
*/
floorName?: string;
/**
*
*/
orgCode?: string;
/**
* 10
*/
dataState?: number;
2025-06-18 16:50:58 +08:00
/**
*
*/
createEmpId?: string | number;
/**
*
*/
modifyTime?: string;
/**
*
*/
searchValue?: string;
2025-06-18 11:03:42 +08:00
/**
*
*/
params?: any;
}