This commit is contained in:
@@ -1,76 +0,0 @@
|
||||
export interface CeremonialserveRoombookingVO {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 服务id
|
||||
*/
|
||||
ceremonialServeId: string | number;
|
||||
|
||||
/**
|
||||
* 预订id
|
||||
*/
|
||||
roomBookingId: string | number;
|
||||
|
||||
/**
|
||||
* 服务和预订总价格
|
||||
*/
|
||||
totalPrice: number;
|
||||
|
||||
}
|
||||
|
||||
export interface CeremonialserveRoombookingForm extends BaseEntity {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 服务id
|
||||
*/
|
||||
ceremonialServeId?: string | number;
|
||||
|
||||
/**
|
||||
* 预订id
|
||||
*/
|
||||
roomBookingId?: string | number;
|
||||
|
||||
/**
|
||||
* 服务和预订总价格
|
||||
*/
|
||||
totalPrice?: number;
|
||||
|
||||
}
|
||||
|
||||
export interface CeremonialserveRoombookingQuery extends PageQuery {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 服务id
|
||||
*/
|
||||
ceremonialServeId?: string | number;
|
||||
|
||||
/**
|
||||
* 预订id
|
||||
*/
|
||||
roomBookingId?: string | number;
|
||||
|
||||
/**
|
||||
* 服务和预订总价格
|
||||
*/
|
||||
totalPrice?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user