This commit is contained in:
2025-06-18 16:50:58 +08:00
parent 1262d4c745
commit 06a0e3649d
46 changed files with 3048 additions and 545 deletions

View File

@@ -2,7 +2,7 @@ import type { PageQuery, BaseEntity } from '#/api/common';
export interface FloorVO {
/**
* 数据库id
*
*/
id: string | number;
@@ -36,11 +36,26 @@ export interface FloorVO {
*/
dataState: number;
/**
* 创建人
*/
createEmpId: string | number;
/**
* 修改时间
*/
modifyTime: string;
/**
* 搜索值
*/
searchValue: string;
}
export interface FloorForm extends BaseEntity {
/**
* 数据库id
*
*/
id?: string | number;
@@ -74,6 +89,21 @@ export interface FloorForm extends BaseEntity {
*/
dataState?: number;
/**
* 创建人
*/
createEmpId?: string | number;
/**
* 修改时间
*/
modifyTime?: string;
/**
* 搜索值
*/
searchValue?: string;
}
export interface FloorQuery extends PageQuery {
@@ -107,6 +137,21 @@ export interface FloorQuery extends PageQuery {
*/
dataState?: number;
/**
* 创建人
*/
createEmpId?: string | number;
/**
* 修改时间
*/
modifyTime?: string;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/