using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组-出入境费用报价项信息 /// [SugarTable("Grp_EnterExitCostQuoteItem", "团组 - 出入境费用报价项信息")] public class Grp_EnterExitCostQuoteItem: EntityBase { /// /// 出入境费用报价表Id /// [SugarColumn(ColumnName = "QuoteId", ColumnDescription = "出入境费用报价表Id", IsNullable = true, ColumnDataType = "int")] public int QuoteId { get; set; } /// /// 项ID /// [SugarColumn(ColumnName = "ItemId", ColumnDescription = "项ID(1,2,3...)", IsNullable = true, ColumnDataType = "int")] public int ItemId { get; set; } /// /// 项排序 /// [SugarColumn(ColumnName = "Index", ColumnDescription = "项排序", IsNullable = true, ColumnDataType = "int")] public int Index { get; set; } /// /// 费用名称 /// [SugarColumn(ColumnName = "FeeName", ColumnDescription = "费用名称", IsNullable = true, ColumnDataType = "varchar(120)")] public string FeeName { get; set; } /// /// 单价 /// [SugarColumn(ColumnName = "UnitPrice", ColumnDescription = "单价", IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal UnitPrice { get; set; } /// /// 币种(单机币种) /// [SugarColumn(ColumnName = "Currency", ColumnDescription = "币种", IsNullable = true, ColumnDataType = "varchar(10)")] public string Currency { get; set; } /// /// 数量/天数/间/晚/次 /// [SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量/天数/间/晚/次", IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Quantity { get; set; } /// /// 人数 /// [SugarColumn(ColumnName = "PplNum", ColumnDescription = "人数", IsNullable = true, ColumnDataType = "int")] public int PplNum { get; set; } /// /// 合计(CNY) /// [SugarColumn(ColumnName = "TotalAmt", ColumnDescription = "合计(CNY)", IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal TotalAmt { get; set; } } }