using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Groups { public class HotelInquiryDto { } public class HotelInquiryPageItemDto : DtoBase { public int DiId { get; set; } } public class HotelInquiryInfoDto : PortDtoBase { public int Id { get; set; } } public class HotelInquiryAddOrEditDto : OpBaseDto { /// /// 团组Id /// public int DiId { get; set; } /// /// 所在城市 /// public string City { get; set; } /// /// 酒店名称 /// public string Name { get; set; } /// /// 酒店地址 /// public string Address { get; set; } /// /// 查询时间 /// public string SelectDt { get; set; } /// /// 入住 日期 /// public string CheckInDate { get; set; } /// /// 离店 日期 /// public string CheckOutDate { get; set; } /// /// 单间 价格 /// public decimal SinglePrice { get; set; } /// /// 单间 数量 /// public int SingleQuantity { get; set; } /// /// 单间 币种 /// 外键 币种Id /// public int SingleCurrency { get; set; } /// /// 双人间 价格 /// public decimal DoublePrice { get; set; } /// /// 双人间 数量 /// public int DoubleQuantity { get; set; } /// /// 双人间 币种 /// 外键 币种Id /// public int DoubleCurrency { get; set; } /// /// 套房 价格 /// public decimal SuitePrice { get; set; } /// /// 套房 数量 /// public int SuiteQuantity { get; set; } /// /// 套房 币种 /// 外键 币种Id /// public int SuiteCurrency { get; set; } /// /// 其他 价格 /// public decimal OtherPrice { get; set; } /// /// 其他 数量 /// public int OtherQuantity { get; set; } /// /// 单价 币种 /// 外键 币种Id /// public int OtherCurrency { get; set; } } public class HotelInquiryDelDto : DelBaseDto { } }