160 lines
1.8 KiB
TypeScript
160 lines
1.8 KiB
TypeScript
|
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;
|
||
|
}
|