using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.Groups { /// /// 根据diid查询酒店费用列表 /// public class HotelReservationsByDiIdView { /// /// 酒店主键Id /// public int Id { get; set; } /// /// 客人类型 /// public string GuestType { get; set; } /// /// 预订编号 /// public string ReservationsNo { get; set; } /// /// 酒店名称 /// public string HotelName { get; set; } /// /// 入住日期 /// public string CheckInDate { get; set; } /// /// 离店日期 /// public string CheckOutDate { get; set; } /// /// 付款金额 /// public decimal PayMoney { get; set; } /// /// 付款币种 /// public string PaymentCurrency { get; set; } /// /// 创建人Id /// public string CreateUserName { get; set; } /// /// 操作时间 /// public DateTime CreateTime { get; set; } /// /// 总经理是否审核 /// public int IsAuditGM { get; set; } /// /// 总经理是否审核 /// public string IsAuditGMStr { get; set; } /// /// 附件地址 /// public string Attachment { get; set; } } /// /// 根据id查询酒店费用详情返回view /// public class HotelReservationsByIdView { public int Id { get; set; } /// /// 团组Id /// public int DiId { get; set; } /// /// 客人类型(设置数据外键编号) /// public int GTId { get; set; } /// /// 入住卷号码 /// public string CheckNumber { get; set; } /// /// 预订网站(设置数据外键编号) /// public int ReservationsWebsite { get; set; } /// /// 预订号码 /// public string ReservationsNo { get; set; } /// /// 酒店确定编号 /// public string DetermineNo { get; set; } /// /// 所在城市 /// public string City { get; set; } /// /// 酒店名称 /// public string HotelName { get; set; } /// /// 酒店地址 /// public string HotelAddress { get; set; } /// /// 酒店电话 /// public string HotelTel { get; set; } /// /// 客人姓名 /// public string GuestName { get; set; } /// /// 入住日期 /// public string CheckInDate { get; set; } /// /// 退房日期 /// public string CheckOutDate { get; set; } /// /// 预算金额 /// public decimal Budget { get; set; } /// /// 预算币种(设置数据外键编号) /// public int BudgetCurrency { get; set; } /// /// 单间数量 /// public int SingleRoomCount { get; set; } /// /// 单间单价 /// public decimal SingleRoomPrice { get; set; } /// /// 双间数量 /// public int DoubleRoomCount { get; set; } /// /// 双间单价 /// public decimal DoubleRoomPrice { get; set; } /// /// 套房数量 /// public int SuiteRoomCount { get; set; } /// /// 套房单价 /// public decimal SuiteRoomPrice { get; set; } /// /// 其他房型数量 /// public int OtherRoomCount { get; set; } /// /// 其他房型单价 /// public decimal OtherRoomPrice { get; set; } /// /// 房间说明 /// public string RoomExplanation { get; set; } /// /// 附件地址 /// public string Attachment { get; set; } /// /// 信用卡金额 /// public decimal CardPrice { get; set; } /// /// 确认标识 信用卡金额 /// 0:未刷(红色) 1:已刷(绿色) /// public int IsCardPrice { get; set; } /// /// 预计单间数量 /// public int PredictSingleRoom { get; set; } /// /// 预计双人间数量 /// public int PredictDoubleRoom { get; set; } /// /// 预计套房数量 /// public int PredictSuiteRoom { get; set; } /// /// 预计其他间数量 /// public int PredictOtherRoom { get; set; } /// /// 地税 /// public decimal GovernmentRent { get; set; } /// /// 地税币种 /// public int GovernmentRentCurrency { get; set; } /// /// 城市税 /// public decimal CityTax { get; set; } /// /// 城市税币种 /// public int CityTaxCurrency { get; set; } /// /// 房间入住人类型 /// public string CheckType { get; set; } /// /// 备注 /// public string Remark { get; set; } } }