using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Resource { /// /// 机票黑屏代码 /// [SugarTable("Air_TicketBlackCode")] public class Air_TicketBlackCode:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable =true,ColumnDataType ="int")] public int DiId { get; set; } /// /// 黑屏代码 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")] public string LeaveCode { get; set; } /// /// 黑屏代码 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")] public string BlackCode { get; set; } /// /// 黑屏代码 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")] public string ReturnCode { get; set; } /// /// 报价 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string Price { get; set; } /// /// 最新报价 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string NowPrice { get; set; } /// /// 公务舱单价 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal BCPrice { get; set; } /// ///经济舱单价 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal ECPrice { get; set; } } }