1、会议室预约
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-08 17:33:42 +08:00
parent b1265fb00c
commit a3c0cbe2a5
10 changed files with 446 additions and 133 deletions

View File

@@ -268,6 +268,8 @@ export interface conferenceSettingsDetail extends BaseEntity {
*/
baseServiceId: string | number;
baseService: string;
/**
* 基础价格
*/
@@ -297,6 +299,8 @@ export interface conferenceSettingsDetail extends BaseEntity {
* 负责人
*/
principals: string;
principalsName: string;
/**
* 描述
*/
@@ -326,3 +330,60 @@ export interface conferenceSettingsDetail extends BaseEntity {
*/
picture: string;
}
export interface MeetBo{
/**
* 会议室名称
*/
name?: string;
/**
* 位置
*/
location?: string;
/**
* 容纳人数
*/
personNumber?: number;
/**
* 基础服务
*/
baseServiceId?: string | number;
/**
* 基础价格
*/
basePrice?: number;
/**
* 增值服务是否启用
*/
attach?: number;
/**
* 创建人id
*/
createById?: string | number;
/**
* 更新人id
*/
updateById?: string | number;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/
params?: any;
/**
* 开放时间
*/
openHours?: string;
}