import { Schema } from 'mongoose';
export interface RatePriceVo {
    date: Date;
    amount: number;
    hotel: string | Schema.Types.ObjectId;
    originAmount: number;
    ttlExpiredAt: Date;
    roomType: string | Schema.Types.ObjectId;
    ratePlan: string | Schema.Types.ObjectId;
    createdAt: Date;
    updatedAt: Date;
}
