admin-vben5/apps/web-antd/src/api/property/roomBooking/conferenceSettings/model.d.ts
dev_ljl a3c0cbe2a5
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
1、会议室预约
2025-07-08 17:33:42 +08:00

390 lines
4.4 KiB
TypeScript

import type { PageQuery, BaseEntity } from '#/api/common';
export interface MeetVO {
/**
* 主键
*/
id: string | number;
/**
* 会议室名称
*/
name: string;
/**
* 位置
*/
location: string;
/**
* 容纳人数
*/
personNumber: number;
/**
* 基础服务
*/
baseService: string;
/**
* 基础价格
*/
basePrice: number;
/**
* 增值服务是否启用
*/
attach: number;
/**
* 负责人
*/
principals: string;
/**
* 描述
*/
descs: string;
/**
* 联系电话
*/
phoneNo: string;
/**
* 是否审核
*/
isCheck: string;
/**
* 开放时间
*/
openHours: string;
/**
* 状态
*/
status: string;
/**
*费用模式
*/
expenseType: string;
/**
* 图片
*/
picture: 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;
/**
* 负责人
*/
principals: string;
/**
* 描述
*/
descs: string;
/**
* 联系电话
*/
phoneNo: string;
/**
* 是否审核
*/
isCheck: string;
/**
* 开放时间
*/
openHours: string;
/**
* 状态
*/
status: string;
/**
*费用模式
*/
expenseType: string;
/**
* 图片
*/
picture: 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;
/**
* 负责人
*/
principals: string;
/**
* 描述
*/
descs: string;
/**
* 联系电话
*/
phoneNo: string;
/**
* 是否审核
*/
isCheck: string;
/**
* 开放时间
*/
openHours: string;
/**
* 状态
*/
status: string;
/**
*费用模式
*/
expenseType: string;
/**
* 图片
*/
picture: string;
}
export interface conferenceSettingsDetail extends BaseEntity {
/**
* 主键
*/
id: string | number;
/**
* 会议室名称
*/
name: string;
/**
* 位置
*/
location: string;
locationName: string;
/**
* 容纳人数
*/
personNumber: number;
/**
* 基础服务
*/
baseServiceId: string | number;
baseService: string;
/**
* 基础价格
*/
basePrice: number;
/**
* 增值服务是否启用
*/
attach: number;
/**
* 创建人id
*/
createById: string | number;
/**
* 更新人id
*/
updateById: string | number;
/**
* 搜索值
*/
searchValue: string;
/**
* 负责人
*/
principals: string;
principalsName: string;
/**
* 描述
*/
descs: string;
/**
* 联系电话
*/
phoneNo: string;
/**
* 是否审核
*/
isCheck: string;
/**
* 开放时间
*/
openHours: string;
/**
* 状态
*/
status: string;
/**
*费用模式
*/
expenseType: string;
/**
* 图片
*/
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;
}