ViewGroupsCustomersPay.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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 ViewGroupsCustomersPay
  11. {
  12. string clientName;
  13. /// <summary>
  14. /// 客户名称
  15. /// </summary>
  16. public string ClientName
  17. {
  18. get { return clientName; }
  19. set { clientName = 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 operatorDate;
  49. /// <summary>
  50. /// 时间
  51. /// </summary>
  52. public string OperatorDate
  53. {
  54. get { return operatorDate; }
  55. set { operatorDate = value; }
  56. }
  57. string isPay;
  58. /// <summary>
  59. /// 付款状态
  60. /// </summary>
  61. public string IsPay
  62. {
  63. get { return isPay; }
  64. set
  65. {
  66. if (value != null && value != "" && value == "0")
  67. isPay = "未付款";
  68. else if (value != null && value != "" && value == "1")
  69. isPay = "已付款";
  70. else
  71. isPay = "未付款";
  72. }
  73. }
  74. string payee;
  75. /// <summary>
  76. /// 收款方
  77. /// </summary>
  78. public string Payee
  79. {
  80. get { return payee; }
  81. set { payee = value; }
  82. }
  83. string orbitalPrivateTransfer;
  84. /// <summary>
  85. /// 费用标识
  86. /// </summary>
  87. public string OrbitalPrivateTransfer
  88. {
  89. get { return orbitalPrivateTransfer; }
  90. set
  91. {
  92. if (value != null && value != "" && value == "0")
  93. orbitalPrivateTransfer = "公转";
  94. else if (value != null && value != "" && value == "1")
  95. orbitalPrivateTransfer = "私转";
  96. else
  97. orbitalPrivateTransfer = "未知";
  98. }
  99. }
  100. string payDid;
  101. /// <summary>
  102. /// 支付方式
  103. /// </summary>
  104. public string PayDid
  105. {
  106. get { return payDid; }
  107. set { payDid = value; }
  108. }
  109. string paydName;
  110. /// <summary>
  111. /// 支付方式(名称)
  112. /// </summary>
  113. public string PaydName
  114. {
  115. get { return paydName; }
  116. set { paydName = value; }
  117. }
  118. string auditGMDate;
  119. public string AuditGMDate
  120. {
  121. get { return auditGMDate; }
  122. set { auditGMDate = value; }
  123. }
  124. string operators;
  125. public string Operator
  126. {
  127. get { return operators; }
  128. set { operators = value; }
  129. }
  130. public int IsMatchCreditCard { get; set; }
  131. }
  132. }