using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 机票费用录入表 /// [SugarTable("Grp_AirPrice")] public class Grp_AirPrice:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 机票黑屏代码、询价表Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int AiId { get; set; } /// /// 舱位编码 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string CabinCode { get; set; } /// /// 出票前单人票价 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal SinglePrice { get; set; } /// /// 币种 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string SingleCurency { get; set; } /// /// 人数 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Count { get; set; } /// /// 出票前总票价 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] public decimal TotalPrice { get; set; } /// /// 币种 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string TotalCurency { get; set; } /// /// 是否值机0否1是 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsCheck { get; set; } /// /// 是否选座0否1是 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsSeat { get; set; } /// /// 是否购买行李0否1是 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsPackage { get; set; } /// /// 是否行李直挂0否1是 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsBag { get; set; } /// /// 报价说明0否1是 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string PriceRemark { get; set; } } }