|
@@ -0,0 +1,215 @@
|
|
|
|
+using OASystem.Domain.Enums;
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.Linq;
|
|
|
|
+using System.Text;
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
+
|
|
|
|
+namespace OASystem.Domain.Entities.Groups
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarTable("Grp_EnterExitCost")]
|
|
|
|
+ public class Grp_EnterExitCost : EntityBase
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int DiId { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal InsidePay { get; set; }
|
|
|
|
+
|
|
|
|
+ #region 境内费用(其他费用)子项
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal Visa { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
|
|
|
|
+ public string? VisaRemark { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal YiMiao { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal HeSuan { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal Service { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal Ticket { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal Safe { get; set; }
|
|
|
|
+
|
|
|
|
+ #endregion
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal OutsideJJPay { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal OutsaideGWPay { get; set; }
|
|
|
|
+
|
|
|
|
+ #region 国际旅费合计(经济舱\公务舱)
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal AirJJ { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal AirGW { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
|
+ public decimal CityTranffic { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ #region 汇率币种
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
|
|
|
|
+ public decimal RateUSD { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
|
|
|
|
+ public decimal RateJPY { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
|
|
|
|
+ public decimal RateEUR { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
|
|
|
|
+ public decimal RateGBP { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
|
|
|
|
+ public decimal RateHKD { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
|
+ public string? CurrencyRmark { get; set; }
|
|
|
|
+
|
|
|
|
+ #endregion
|
|
|
|
+
|
|
|
|
+ #endregion
|
|
|
|
+
|
|
|
|
+ #region 选择框状态
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ChoiceOne { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ChoiceTwo { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int SumJJCC { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int SumGWC { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ChoiceThree { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ChoiceFour { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ChoiceFive { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ChoiceSix { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int AirJJC_Checked { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int AirGWC_Checked { get; set; }
|
|
|
|
+
|
|
|
|
+ #endregion
|
|
|
|
+ }
|
|
|
|
+}
|