UNPKG

@tomei/rental

Version:
22 lines (21 loc) 625 B
import { Model } from 'sequelize-typescript'; import { RentalPriceModel } from './rental-price.entity'; import { BookingStatusEnum } from '../enum/booking.enum'; export declare class BookingModel extends Model { BookingNo: string; CustomerId: string; CustomerType: string; ItemId: string; ItemType: string; PriceId: string; ScheduledStartDateTime: Date; ScheduledEndDateTime: Date; BookingFee: number; Status: BookingStatusEnum; CancelRemarks: string; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; RentalPrice: RentalPriceModel; }