UNPKG

@chuxingpay/hc-faas-base

Version:

FuXun Hotel Connector Base Objects

13 lines (12 loc) 338 B
import { Schema } from 'mongoose'; export interface RatePriceDto { 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; }