using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 酒店询价 entities /// [SugarTable("Grp_HotelInquiry")] public class Grp_HotelInquiry:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 所在城市 /// [SugarColumn(IsNullable = true,ColumnDataType = "varchar(50)")] public string City { get; set; } /// /// 酒店名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string Name { get; set; } /// /// 酒店地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string Address { get; set; } /// /// 查询时间 /// [SugarColumn(IsNullable = true, ColumnDataType = "datetime")] public DateTime SelectDt { get; set; } /// /// 入住 日期 /// [SugarColumn(IsNullable = true, ColumnDataType = "datetime")] public DateTime CheckInDate{ get; set; } /// /// 离店 日期 /// [SugarColumn(IsNullable = true, ColumnDataType = "datetime")] public DateTime CheckOutDate { get; set; } /// /// 单间 价格 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal SinglePrice { get; set; } /// /// 单间 数量 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SingleQuantity { get; set; } /// /// 单间 币种 /// 外键 币种Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SingleCurrency { get; set; } /// /// 双人间 价格 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal DoublePrice { get; set; } /// /// 双人间 数量 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DoubleQuantity { get; set; } /// /// 双人间 币种 /// 外键 币种Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DoubleCurrency { get; set; } /// /// 套房 价格 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal SuitePrice { get; set; } /// /// 套房 数量 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SuiteQuantity { get; set; } /// /// 套房 币种 /// 外键 币种Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SuiteCurrency { get; set; } /// /// 其他 价格 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal OtherPrice { get; set; } /// /// 其他 数量 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int OtherQuantity { get; set; } /// /// 单价 币种 /// 外键 币种Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int OtherCurrency { get; set; } } }