新增多个功能模块

This commit is contained in:
2025-06-23 09:27:28 +08:00
parent c783f365c8
commit 255481861a
66 changed files with 8555 additions and 6 deletions

View File

@@ -0,0 +1,119 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface AttachVO {
/**
* 主键
*/
id: string | number;
/**
* 会议室id
*/
meetId: string | number;
/**
* 产品名称
*/
projectName: string;
/**
* 单价
*/
price: number;
/**
* 单位
*/
unit: string;
/**
* 类型
*/
type: string;
/**
* 状态
*/
state: number;
/**
* 创建时间
*/
createTime: string;
}
export interface AttachForm extends BaseEntity {
/**
* 主键
*/
id?: string | number;
/**
* 会议室id
*/
meetId?: string | number;
/**
* 产品名称
*/
projectName?: string;
/**
* 单价
*/
price?: number;
/**
* 单位
*/
unit?: string;
/**
* 类型
*/
type?: string;
/**
* 状态
*/
state?: number;
}
export interface AttachQuery extends PageQuery {
/**
* 会议室id
*/
meetId?: string | number;
/**
* 产品名称
*/
projectName?: string;
/**
* 单价
*/
price?: number;
/**
* 单位
*/
unit?: string;
/**
* 类型
*/
type?: string;
/**
* 状态
*/
state?: number;
/**
* 日期范围参数
*/
params?: any;
}