2025-07-04 17:56:14 +08:00
|
|
|
import type { PageQuery, BaseEntity } from '#/api/common';
|
|
|
|
|
|
|
|
export interface MeetVO {
|
|
|
|
/**
|
|
|
|
* 主键
|
|
|
|
*/
|
|
|
|
id: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 会议室名称
|
|
|
|
*/
|
|
|
|
name: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 位置
|
|
|
|
*/
|
|
|
|
location: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 容纳人数
|
|
|
|
*/
|
|
|
|
personNumber: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 基础服务
|
|
|
|
*/
|
|
|
|
baseServiceId: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 基础价格
|
|
|
|
*/
|
|
|
|
basePrice: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 增值服务是否启用
|
|
|
|
*/
|
|
|
|
attach: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 创建人id
|
|
|
|
*/
|
|
|
|
createById: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 更新人id
|
|
|
|
*/
|
|
|
|
updateById: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 搜索值
|
|
|
|
*/
|
|
|
|
searchValue: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MeetForm extends BaseEntity {
|
|
|
|
/**
|
|
|
|
* 主键
|
|
|
|
*/
|
|
|
|
id?: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 会议室名称
|
|
|
|
*/
|
|
|
|
name?: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 位置
|
|
|
|
*/
|
|
|
|
location?: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 容纳人数
|
|
|
|
*/
|
|
|
|
personNumber?: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 基础服务
|
|
|
|
*/
|
|
|
|
baseServiceId?: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 基础价格
|
|
|
|
*/
|
|
|
|
basePrice?: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 增值服务是否启用
|
|
|
|
*/
|
|
|
|
attach?: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 创建人id
|
|
|
|
*/
|
|
|
|
createById?: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 更新人id
|
|
|
|
*/
|
|
|
|
updateById?: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 搜索值
|
|
|
|
*/
|
|
|
|
searchValue?: string;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MeetQuery extends PageQuery {
|
|
|
|
/**
|
|
|
|
* 会议室名称
|
|
|
|
*/
|
|
|
|
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;
|
|
|
|
}
|
2025-07-05 17:47:26 +08:00
|
|
|
|
|
|
|
export interface conferenceSettingsDetail extends BaseEntity {
|
|
|
|
/**
|
|
|
|
* 主键
|
|
|
|
*/
|
|
|
|
id: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 会议室名称
|
|
|
|
*/
|
|
|
|
name: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 位置
|
|
|
|
*/
|
|
|
|
location: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 容纳人数
|
|
|
|
*/
|
|
|
|
personNumber: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 基础服务
|
|
|
|
*/
|
|
|
|
baseServiceId: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 基础价格
|
|
|
|
*/
|
|
|
|
basePrice: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 增值服务是否启用
|
|
|
|
*/
|
|
|
|
attach: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 创建人id
|
|
|
|
*/
|
|
|
|
createById: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 更新人id
|
|
|
|
*/
|
|
|
|
updateById: string | number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 搜索值
|
|
|
|
*/
|
|
|
|
searchValue: string;
|
|
|
|
}
|