This commit is contained in:
@@ -1,320 +0,0 @@
|
||||
export interface CeremonialServeVO {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 分类id
|
||||
*/
|
||||
classificationId: string | number;
|
||||
|
||||
/**
|
||||
* 预订id
|
||||
*/
|
||||
roomBookId: string | number;
|
||||
|
||||
/**
|
||||
* 服务数量
|
||||
*/
|
||||
serveNum: number;
|
||||
|
||||
/**
|
||||
* 服务分类
|
||||
*/
|
||||
serveType: number;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
serveName: string;
|
||||
|
||||
/**
|
||||
* 预订状态(0:待确认,1:已确认,2:已取消,3:已完成)
|
||||
*/
|
||||
serveStatus: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime: string;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
createBy: string;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
createById: string | number;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
updateTime: string;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
updateBy: string;
|
||||
|
||||
/**
|
||||
* 更新人id
|
||||
*/
|
||||
updateById: string | number;
|
||||
|
||||
/**
|
||||
* 确认人id
|
||||
*/
|
||||
confirmId: string | number;
|
||||
|
||||
/**
|
||||
* 服务开始时间
|
||||
*/
|
||||
beginTime: string;
|
||||
|
||||
/**
|
||||
* 服务结束时间
|
||||
*/
|
||||
endTime: string;
|
||||
|
||||
/**
|
||||
* 服务总价格
|
||||
*/
|
||||
servePrice: number;
|
||||
|
||||
/**
|
||||
* 数据状态(模拟删除 0:删除 1:未删除)
|
||||
*/
|
||||
dataStauts: number;
|
||||
|
||||
/**
|
||||
* 产品图片
|
||||
*/
|
||||
serveImage: string;
|
||||
|
||||
/**
|
||||
* 产品图片Url
|
||||
*/
|
||||
serveImageUrl: string;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
sort: number;
|
||||
|
||||
}
|
||||
|
||||
export interface CeremonialServeForm extends BaseEntity {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 分类id
|
||||
*/
|
||||
classificationId?: string | number;
|
||||
|
||||
/**
|
||||
* 预订id
|
||||
*/
|
||||
roomBookId?: string | number;
|
||||
|
||||
/**
|
||||
* 服务数量
|
||||
*/
|
||||
serveNum?: number;
|
||||
|
||||
/**
|
||||
* 服务分类
|
||||
*/
|
||||
serveType?: number;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
serveName?: string;
|
||||
|
||||
/**
|
||||
* 预订状态(0:待确认,1:已确认,2:已取消,3:已完成)
|
||||
*/
|
||||
serveStatus?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime?: string;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
createBy?: string;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
createById?: string | number;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
updateTime?: string;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
updateBy?: string;
|
||||
|
||||
/**
|
||||
* 更新人id
|
||||
*/
|
||||
updateById?: string | number;
|
||||
|
||||
/**
|
||||
* 确认人id
|
||||
*/
|
||||
confirmId?: string | number;
|
||||
|
||||
/**
|
||||
* 服务开始时间
|
||||
*/
|
||||
beginTime?: string;
|
||||
|
||||
/**
|
||||
* 服务结束时间
|
||||
*/
|
||||
endTime?: string;
|
||||
|
||||
/**
|
||||
* 服务总价格
|
||||
*/
|
||||
servePrice?: number;
|
||||
|
||||
/**
|
||||
* 数据状态(模拟删除 0:删除 1:未删除)
|
||||
*/
|
||||
dataStauts?: number;
|
||||
|
||||
/**
|
||||
* 产品图片
|
||||
*/
|
||||
serveImage?: string;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
sort?: number;
|
||||
|
||||
}
|
||||
|
||||
export interface CeremonialServeQuery extends PageQuery {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 分类id
|
||||
*/
|
||||
classificationId?: string | number;
|
||||
|
||||
/**
|
||||
* 预订id
|
||||
*/
|
||||
roomBookId?: string | number;
|
||||
|
||||
/**
|
||||
* 服务数量
|
||||
*/
|
||||
serveNum?: number;
|
||||
|
||||
/**
|
||||
* 服务分类
|
||||
*/
|
||||
serveType?: number;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
serveName?: string;
|
||||
|
||||
/**
|
||||
* 预订状态(0:待确认,1:已确认,2:已取消,3:已完成)
|
||||
*/
|
||||
serveStatus?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime?: string;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
createBy?: string;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
createById?: string | number;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
updateTime?: string;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
updateBy?: string;
|
||||
|
||||
/**
|
||||
* 更新人id
|
||||
*/
|
||||
updateById?: string | number;
|
||||
|
||||
/**
|
||||
* 确认人id
|
||||
*/
|
||||
confirmId?: string | number;
|
||||
|
||||
/**
|
||||
* 服务开始时间
|
||||
*/
|
||||
beginTime?: string;
|
||||
|
||||
/**
|
||||
* 服务结束时间
|
||||
*/
|
||||
endTime?: string;
|
||||
|
||||
/**
|
||||
* 服务总价格
|
||||
*/
|
||||
servePrice?: number;
|
||||
|
||||
/**
|
||||
* 数据状态(模拟删除 0:删除 1:未删除)
|
||||
*/
|
||||
dataStauts?: number;
|
||||
|
||||
/**
|
||||
* 产品图片
|
||||
*/
|
||||
serveImage?: string;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
sort?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user