Grp_TeamRate.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Financial
  7. {
  8. /// <summary>
  9. /// 团组汇率表
  10. /// </summary>
  11. [SugarTable("Grp_TeamRate")]
  12. public class Grp_TeamRate : EntityBase
  13. {
  14. /// <summary>
  15. /// 团组id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int DiId { get; set; }
  19. /// <summary>
  20. /// 团组指向分类
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int CTable { get; set; }
  24. /// <summary>
  25. /// 其他汇率名称
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
  28. public string OtherRateCode { get; set; }
  29. /// <summary>
  30. /// 其他汇率金额
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  33. public decimal OtherPrice { get; set; }
  34. /// <summary>
  35. /// 美元汇率
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  38. public decimal RateU { get; set; }
  39. /// <summary>
  40. /// 欧元汇率
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  43. public decimal RateE { get; set; }
  44. /// <summary>
  45. /// 日元汇率
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  48. public decimal RateJ { get; set; }
  49. /// <summary>
  50. /// 港币汇率
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  53. public decimal RateH { get; set; }
  54. /// <summary>
  55. /// 新西兰元汇率
  56. /// </summary>
  57. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  58. public decimal RateN { get; set; }
  59. /// <summary>
  60. /// 新加坡币汇率
  61. /// </summary>
  62. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  63. public decimal RateS { get; set; }
  64. /// <summary>
  65. /// 澳大利亚元汇率
  66. /// </summary>
  67. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  68. public decimal RateA { get; set; }
  69. /// <summary>
  70. /// 加拿大元汇率
  71. /// </summary>
  72. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  73. public decimal RateC { get; set; }
  74. /// <summary>
  75. /// 泰铢汇率
  76. /// </summary>
  77. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  78. public decimal RateT { get; set; }
  79. /// <summary>
  80. /// 波兰汇率
  81. /// </summary>
  82. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  83. public decimal RateBL { get; set; }
  84. /// <summary>
  85. /// 韩币
  86. /// </summary>
  87. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  88. public decimal RateHB { get; set; }
  89. /// <summary>
  90. /// 斐济币汇率
  91. /// </summary>
  92. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  93. public decimal RateFJD { get; set; }
  94. /// <summary>
  95. /// 土耳其币汇率
  96. /// </summary>
  97. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  98. public decimal RateTL { get; set; }
  99. /// <summary>
  100. /// 卢比汇率
  101. /// </summary>
  102. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  103. public decimal RateRP { get; set; }
  104. /// <summary>
  105. /// 菲律宾汇率
  106. /// </summary>
  107. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  108. public decimal RatePeso { get; set; }
  109. /// <summary>
  110. /// 马来西亚汇率
  111. /// </summary>
  112. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  113. public decimal RateMYR { get; set; }
  114. /// <summary>
  115. /// 捷克币汇率
  116. /// </summary>
  117. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  118. public decimal RateCZK { get; set; }
  119. /// <summary>
  120. /// 墨西哥币汇率
  121. /// </summary>
  122. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  123. public decimal RateMXN { get; set; }
  124. /// <summary>
  125. /// 澳门元
  126. /// </summary>
  127. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  128. public decimal RateMOP { get; set; }
  129. /// <summary>
  130. /// 阿根廷比索
  131. /// </summary>
  132. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  133. public decimal RateARS { get; set; }
  134. /// <summary>
  135. /// 匈牙利货币
  136. /// </summary>
  137. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  138. public decimal RateHUF { get; set; }
  139. /// <summary>
  140. /// 俄罗斯卢布
  141. /// </summary>
  142. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
  143. public decimal RateRUB { get; set; }
  144. }
  145. }