UNPKG

@chuxingpay/hc-faas-base

Version:

FuXun Hotel Connector Base Objects

13 lines (12 loc) 331 B
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; }