Grp_EnterExitCost.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. using OASystem.Domain.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Entities.Groups
  8. {
  9. /// <summary>
  10. /// 团组 - 出入境费用
  11. /// </summary>
  12. [SugarTable("Grp_EnterExitCost")]
  13. public class Grp_EnterExitCost : EntityBase
  14. {
  15. /// <summary>
  16. /// 团组Id
  17. /// </summary>
  18. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  19. public int DiId { get; set; }
  20. /// <summary>
  21. /// 境内费用(其他费用)
  22. /// </summary>
  23. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  24. public decimal InsidePay { get; set; }
  25. #region 境内费用(其他费用)子项
  26. /// <summary>
  27. /// 签证费
  28. /// </summary>
  29. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  30. public decimal Visa { get; set; }
  31. /// <summary>
  32. /// 签证费描述
  33. /// </summary>
  34. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  35. public string? VisaRemark { get; set; }
  36. /// <summary>
  37. /// 疫苗费
  38. /// </summary>
  39. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  40. public decimal YiMiao { get; set; }
  41. /// <summary>
  42. /// 核酸检测费用
  43. /// </summary>
  44. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  45. public decimal HeSuan { get; set; }
  46. /// <summary>
  47. /// 服务费用
  48. /// </summary>
  49. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  50. public decimal Service { get; set; }
  51. /// <summary>
  52. /// 参展门票
  53. /// </summary>
  54. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  55. public decimal Ticket { get; set; }
  56. /// <summary>
  57. /// 保险费
  58. /// </summary>
  59. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  60. public decimal Safe { get; set; }
  61. #endregion
  62. /// <summary>
  63. /// 国际旅费合计(经济舱)
  64. /// </summary>
  65. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  66. public decimal OutsideJJPay { get; set; }
  67. /// <summary>
  68. /// 国际旅费合计(公务舱)
  69. /// </summary>
  70. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  71. public decimal OutsaideGWPay { get; set; }
  72. #region 国际旅费合计(经济舱\公务舱)
  73. /// <summary>
  74. /// 国际机票(经济舱)
  75. /// </summary>
  76. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  77. public decimal AirJJ { get; set; }
  78. /// <summary>
  79. /// 国际机票(公务舱)
  80. /// </summary>
  81. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  82. public decimal AirGW { get; set; }
  83. /// <summary>
  84. /// 国外城市间交通费
  85. /// </summary>
  86. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  87. public decimal CityTranffic { get; set; }
  88. #region 汇率币种
  89. /// <summary>
  90. /// 美元
  91. /// </summary>
  92. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  93. public decimal RateUSD { get; set; }
  94. /// <summary>
  95. /// 日元
  96. /// </summary>
  97. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  98. public decimal RateJPY { get; set; }
  99. /// <summary>
  100. /// 欧元
  101. /// </summary>
  102. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  103. public decimal RateEUR { get; set; }
  104. /// <summary>
  105. /// 英镑
  106. /// </summary>
  107. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  108. public decimal RateGBP { get; set; }
  109. /// <summary>
  110. /// 港币
  111. /// </summary>
  112. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  113. public decimal RateHKD { get; set; }
  114. /// <summary>
  115. /// 币种描述
  116. /// </summary>
  117. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  118. public string? CurrencyRmark { get; set; }
  119. #endregion
  120. #endregion
  121. #region 选择框状态
  122. /// <summary>
  123. /// 境内费用(其他费用)选择框
  124. /// </summary>
  125. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  126. public int ChoiceOne { get; set; }
  127. /// <summary>
  128. /// 国际旅费合计选择框
  129. /// </summary>
  130. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  131. public int ChoiceTwo { get; set; }
  132. /// <summary>
  133. /// 经济舱小计选择框
  134. /// </summary>
  135. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  136. public int SumJJCC { get; set; }
  137. /// <summary>
  138. /// 公务舱小计选择框
  139. /// </summary>
  140. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  141. public int SumGWC { get; set; }
  142. /// <summary>
  143. /// 住宿费合计选择框
  144. /// </summary>
  145. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  146. public int ChoiceThree { get; set; }
  147. /// <summary>
  148. /// 伙食费合计选择框
  149. /// </summary>
  150. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  151. public int ChoiceFour { get; set; }
  152. /// <summary>
  153. /// 公杂费合计选择框
  154. /// </summary>
  155. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  156. public int ChoiceFive { get; set; }
  157. /// <summary>
  158. /// 境内费用(其他费用)选择框
  159. /// </summary>
  160. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  161. public int ChoiceSix { get; set; }
  162. /// <summary>
  163. /// 经济舱选择框
  164. /// </summary>
  165. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  166. public int AirJJC_Checked { get; set; }
  167. /// <summary>
  168. /// 公务舱选择框
  169. /// </summary>
  170. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  171. public int AirGWC_Checked { get; set; }
  172. #endregion
  173. }
  174. }