using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 机票黑屏代码、询价表 /// [SugarTable("Grp_AirInquiry")] public class Grp_AirInquiry:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 黑屏代码 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string BlackCode { get; set; } /// /// 航段 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Routing { get; set; } /// /// 3U /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Carrier { get; set; } /// /// 航班号 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string FlightNo { get; set; } /// /// 航班出发日期 /// [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")] public DateTime DepartDate { get; set; } /// /// 航班起飞时间 /// [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")] public DateTime DepartTime { get; set; } /// /// 航班落地时间 /// [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")] public DateTime ArrivalTime { get; set; } /// /// 头等舱单价(全价) /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] public decimal FirstYPrice { get; set; } /// /// 头等舱单价(即时) /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] public decimal FirstCabinPrice { get; set; } /// /// 头等舱单价(全价) /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] public decimal BusinessYPrice { get; set; } /// /// 头等舱单价(即时) /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] public decimal BusinessCabinPrice { get; set; } /// /// 经济舱单价(全价) /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] public decimal YPrice { get; set; } /// /// 经济舱单价(即时) /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] public decimal CabinPrice { get; set; } /// /// 业务人员查询时间 /// [SugarColumn(IsNullable = true, ColumnDataType = "dateTime")] public DateTime SearchDt { get; set; } } }