物业代码生成

This commit is contained in:
2025-06-18 11:03:42 +08:00
commit 1262d4c745
1881 changed files with 249599 additions and 0 deletions

View File

@@ -0,0 +1,114 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface FloorVO {
/**
* 数据库id
*/
id: string | number;
/**
* 社区编码
*/
communityCode: string;
/**
* 建筑名称
*/
buildingCode: string;
/**
* 楼层编码
*/
floorCode: number;
/**
* 楼层数名称
*/
floorName: string;
/**
* 组织编码
*/
orgCode: string;
/**
* 数据状态1有效0无效
*/
dataState: number;
}
export interface FloorForm extends BaseEntity {
/**
* 数据库id
*/
id?: string | number;
/**
* 社区编码
*/
communityCode?: string;
/**
* 建筑名称
*/
buildingCode?: string;
/**
* 楼层编码
*/
floorCode?: number;
/**
* 楼层数名称
*/
floorName?: string;
/**
* 组织编码
*/
orgCode?: string;
/**
* 数据状态1有效0无效
*/
dataState?: number;
}
export interface FloorQuery extends PageQuery {
/**
* 社区编码
*/
communityCode?: string;
/**
* 建筑名称
*/
buildingCode?: string;
/**
* 楼层编码
*/
floorCode?: number;
/**
* 楼层数名称
*/
floorName?: string;
/**
* 组织编码
*/
orgCode?: string;
/**
* 数据状态1有效0无效
*/
dataState?: number;
/**
* 日期范围参数
*/
params?: any;
}