This commit is contained in:
@@ -24,7 +24,7 @@ export interface MeetVO {
|
||||
/**
|
||||
* 基础服务
|
||||
*/
|
||||
baseServiceId: string | number;
|
||||
baseService: string;
|
||||
|
||||
/**
|
||||
* 基础价格
|
||||
@@ -35,21 +35,38 @@ export interface MeetVO {
|
||||
* 增值服务是否启用
|
||||
*/
|
||||
attach: number;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
* 负责人
|
||||
*/
|
||||
createById: string | number;
|
||||
|
||||
principals: string;
|
||||
/**
|
||||
* 更新人id
|
||||
* 描述
|
||||
*/
|
||||
updateById: string | number;
|
||||
|
||||
descs: string;
|
||||
/**
|
||||
* 搜索值
|
||||
* 联系电话
|
||||
*/
|
||||
searchValue: string;
|
||||
phoneNo: string;
|
||||
/**
|
||||
* 是否审核
|
||||
*/
|
||||
isCheck: string;
|
||||
/**
|
||||
* 开放时间
|
||||
*/
|
||||
openHours: string;
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
status: string;
|
||||
/**
|
||||
*费用模式
|
||||
*/
|
||||
expenseType: string;
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
picture: string;
|
||||
}
|
||||
|
||||
export interface MeetForm extends BaseEntity {
|
||||
@@ -103,6 +120,39 @@ export interface MeetForm extends BaseEntity {
|
||||
*/
|
||||
searchValue?: string;
|
||||
|
||||
/**
|
||||
* 负责人
|
||||
*/
|
||||
principals: string;
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
descs: string;
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
phoneNo: string;
|
||||
/**
|
||||
* 是否审核
|
||||
*/
|
||||
isCheck: string;
|
||||
/**
|
||||
* 开放时间
|
||||
*/
|
||||
openHours: string;
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
status: string;
|
||||
/**
|
||||
*费用模式
|
||||
*/
|
||||
expenseType: string;
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
picture: string;
|
||||
|
||||
}
|
||||
|
||||
export interface MeetQuery extends PageQuery {
|
||||
@@ -155,6 +205,39 @@ export interface MeetQuery extends PageQuery {
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
|
||||
/**
|
||||
* 负责人
|
||||
*/
|
||||
principals: string;
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
descs: string;
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
phoneNo: string;
|
||||
/**
|
||||
* 是否审核
|
||||
*/
|
||||
isCheck: string;
|
||||
/**
|
||||
* 开放时间
|
||||
*/
|
||||
openHours: string;
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
status: string;
|
||||
/**
|
||||
*费用模式
|
||||
*/
|
||||
expenseType: string;
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
picture: string;
|
||||
}
|
||||
|
||||
export interface conferenceSettingsDetail extends BaseEntity {
|
||||
@@ -173,6 +256,8 @@ export interface conferenceSettingsDetail extends BaseEntity {
|
||||
*/
|
||||
location: string;
|
||||
|
||||
locationName: string;
|
||||
|
||||
/**
|
||||
* 容纳人数
|
||||
*/
|
||||
@@ -207,4 +292,37 @@ export interface conferenceSettingsDetail extends BaseEntity {
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue: string;
|
||||
|
||||
/**
|
||||
* 负责人
|
||||
*/
|
||||
principals: string;
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
descs: string;
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
phoneNo: string;
|
||||
/**
|
||||
* 是否审核
|
||||
*/
|
||||
isCheck: string;
|
||||
/**
|
||||
* 开放时间
|
||||
*/
|
||||
openHours: string;
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
status: string;
|
||||
/**
|
||||
*费用模式
|
||||
*/
|
||||
expenseType: string;
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
picture: string;
|
||||
}
|
||||
|
Reference in New Issue
Block a user