|
@@ -0,0 +1,63 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace OASystem.Domain.Entities.Groups
|
|
|
+{
|
|
|
+ /// <summary>
|
|
|
+ /// 团组 - 出入境费用报价
|
|
|
+ /// </summary>
|
|
|
+ [SugarTable("Grp_EnterExitCost", "团组 - 出入境费用报价")]
|
|
|
+ public class Grp_EnterExitCostQuote: EntityBase
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 团组Id
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "GroupId",ColumnDescription = "团组Id", IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int GroupId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 项ID
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "ItemId", ColumnDescription = "项ID(1,2,3...)", IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int ItemId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 费用名称
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "FeeName", ColumnDescription = "费用名称", IsNullable = true, ColumnDataType = "varchar(120)")]
|
|
|
+ public string FeeName { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 单价
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "UnitPrice", ColumnDescription = "单价", IsNullable = true, ColumnDataType = "deciaml(10,2)")]
|
|
|
+ public decimal UnitPrice { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 数量/天数/间/晚/次
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量/天数/间/晚/次", IsNullable = true, ColumnDataType = "deciaml(10,2)")]
|
|
|
+ public decimal Quantity { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 人数
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "PplNum", ColumnDescription = "人数", IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int PplNum { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 币种
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "Currency", ColumnDescription = "币种", IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int Currency { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 合计(CNY)
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "TotalAmt", ColumnDescription = "合计(CNY)", IsNullable = true, ColumnDataType = "deciaml(10,2)")]
|
|
|
+ public decimal TotalAmt { get; set; }
|
|
|
+ }
|
|
|
+}
|