会议管理
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
FLL
2025-07-04 17:56:14 +08:00
parent e21c76cc6f
commit e28ddabf57
20 changed files with 1433 additions and 520 deletions

View File

@@ -0,0 +1,160 @@
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;
}
export interface conferenceAddServices extends BaseEntity {
/**
* 主键
*/
id: string | number;
/**
* 会议室id
*/
meetId: string | number;
/**
* 产品名称
*/
projectName: string;
/**
* 单价
*/
price: number;
/**
* 单位
*/
unit: string;
/**
* 类型
*/
type: string;
/**
* 状态
*/
state: number;
/**
* 创建时间
*/
createTime: string;
}