ViewVisaPay.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. /// <summary>
  8. /// 签证费用多表联查类
  9. /// </summary>
  10. public class ViewVisaPay
  11. {
  12. string visaClient;
  13. /// <summary>
  14. /// 签证客户
  15. /// </summary>
  16. public string VisaClient
  17. {
  18. get { return visaClient; }
  19. set { visaClient = value; }
  20. }
  21. string name;
  22. /// <summary>
  23. /// 币种
  24. /// </summary>
  25. public string Name
  26. {
  27. get { return name; }
  28. set { name = value; }
  29. }
  30. float spread;
  31. /// <summary>
  32. /// 付款金额
  33. /// </summary>
  34. public float Spread
  35. {
  36. get { return spread; }
  37. set { spread = value; }
  38. }
  39. string remark;
  40. /// <summary>
  41. /// 备注
  42. /// </summary>
  43. public string Remark
  44. {
  45. get { return remark; }
  46. set { remark = value; }
  47. }
  48. string dayRate;
  49. /// <summary>
  50. /// 当时汇率
  51. /// </summary>
  52. public string DayRate
  53. {
  54. get { return dayRate; }
  55. set { dayRate = value; }
  56. }
  57. float rMBPrice;
  58. /// <summary>
  59. /// 人民币金额
  60. /// </summary>
  61. public float RMBPrice
  62. {
  63. get { return rMBPrice; }
  64. set { rMBPrice = value; }
  65. }
  66. string payPercentage;
  67. /// <summary>
  68. /// 此次付款百分比
  69. /// </summary>
  70. public string PayPercentage
  71. {
  72. get { return payPercentage; }
  73. set { payPercentage = value; }
  74. }
  75. string payThenMoney;
  76. /// <summary>
  77. /// 此次付款金额
  78. /// </summary>
  79. public string PayThenMoney
  80. {
  81. get { return payThenMoney; }
  82. set { payThenMoney = value; }
  83. }
  84. string operatorDate;
  85. /// <summary>
  86. /// 时间
  87. /// </summary>
  88. public string OperatorDate
  89. {
  90. get { return operatorDate; }
  91. set { operatorDate = value; }
  92. }
  93. string consumptionPatterns;
  94. public string ConsumptionPatterns
  95. {
  96. get { return consumptionPatterns; }
  97. set { consumptionPatterns = value; }
  98. }
  99. string isPay;
  100. /// <summary>
  101. /// 付款状态
  102. /// </summary>
  103. public string IsPay
  104. {
  105. get { return isPay; }
  106. set
  107. {
  108. if (value != null && value != "" && value == "0")
  109. isPay = "未付款";
  110. else if (value != null && value != "" && value == "1")
  111. isPay = "已付款";
  112. else
  113. isPay = "未付款";
  114. }
  115. }
  116. string payee;
  117. /// <summary>
  118. /// 收款方
  119. /// </summary>
  120. public string Payee
  121. {
  122. get { return payee; }
  123. set { payee = value; }
  124. }
  125. string orbitalPrivateTransfer;
  126. /// <summary>
  127. /// 费用标识
  128. /// </summary>
  129. public string OrbitalPrivateTransfer
  130. {
  131. get { return orbitalPrivateTransfer; }
  132. set
  133. {
  134. if (value != null && value != "" && value == "0")
  135. orbitalPrivateTransfer = "公转";
  136. else if (value != null && value != "" && value == "1")
  137. orbitalPrivateTransfer = "私转";
  138. else
  139. orbitalPrivateTransfer = "未知";
  140. }
  141. }
  142. string payDid;
  143. /// <summary>
  144. /// 支付方式
  145. /// </summary>
  146. public string PayDid
  147. {
  148. get { return payDid; }
  149. set { payDid = value; }
  150. }
  151. string paydName;
  152. /// <summary>
  153. /// 支付方式(名称)
  154. /// </summary>
  155. public string PaydName
  156. {
  157. get { return paydName; }
  158. set { paydName = value; }
  159. }
  160. string auditGMDate;
  161. public string AuditGMDate
  162. {
  163. get { return auditGMDate; }
  164. set { auditGMDate = value; }
  165. }
  166. string operators;
  167. public string Operator
  168. {
  169. get { return operators; }
  170. set { operators = value; }
  171. }
  172. public int IsMatchCreditCard { get; set; }
  173. public string CarType { get; set; }
  174. }
  175. }