V2TradePayafteruseInstallmentPayRequest.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 分期扣款
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradePayafteruseInstallmentPayRequest : BaseRequest
  11. {
  12. /**
  13. * 请求日期
  14. */
  15. private string reqDate;
  16. /**
  17. * 请求流水号
  18. */
  19. private string reqSeqId;
  20. /**
  21. * 客户号
  22. */
  23. private string huifuId;
  24. /**
  25. * 交易金额
  26. */
  27. private string transAmt;
  28. /**
  29. * 商品描述
  30. */
  31. private string goodsDesc;
  32. /**
  33. * 风控信息
  34. */
  35. private string riskCheckData;
  36. /**
  37. * 交易有效期
  38. */
  39. private string timeExpire;
  40. /**
  41. * 支付宝扩展参数集合
  42. */
  43. private string alipayData;
  44. public override string getFunctionCode()
  45. {
  46. return FunctionCodeEnum.V2_TRADE_PAYAFTERUSE_INSTALLMENT_PAY;
  47. }
  48. public V2TradePayafteruseInstallmentPayRequest()
  49. {
  50. }
  51. public V2TradePayafteruseInstallmentPayRequest(string reqDate, string reqSeqId, string huifuId, string transAmt, string goodsDesc, string riskCheckData, string timeExpire, string alipayData)
  52. {
  53. this.reqDate = reqDate;
  54. this.reqSeqId = reqSeqId;
  55. this.huifuId = huifuId;
  56. this.transAmt = transAmt;
  57. this.goodsDesc = goodsDesc;
  58. this.riskCheckData = riskCheckData;
  59. this.timeExpire = timeExpire;
  60. this.alipayData = alipayData;
  61. }
  62. public string getReqDate()
  63. {
  64. return reqDate;
  65. }
  66. public void setReqDate(string reqDate)
  67. {
  68. this.reqDate = reqDate;
  69. }
  70. public string getReqSeqId()
  71. {
  72. return reqSeqId;
  73. }
  74. public void setReqSeqId(string reqSeqId)
  75. {
  76. this.reqSeqId = reqSeqId;
  77. }
  78. public string getHuifuId()
  79. {
  80. return huifuId;
  81. }
  82. public void setHuifuId(string huifuId)
  83. {
  84. this.huifuId = huifuId;
  85. }
  86. public string getTransAmt()
  87. {
  88. return transAmt;
  89. }
  90. public void setTransAmt(string transAmt)
  91. {
  92. this.transAmt = transAmt;
  93. }
  94. public string getGoodsDesc()
  95. {
  96. return goodsDesc;
  97. }
  98. public void setGoodsDesc(string goodsDesc)
  99. {
  100. this.goodsDesc = goodsDesc;
  101. }
  102. public string getRiskCheckData()
  103. {
  104. return riskCheckData;
  105. }
  106. public void setRiskCheckData(string riskCheckData)
  107. {
  108. this.riskCheckData = riskCheckData;
  109. }
  110. public string getTimeExpire()
  111. {
  112. return timeExpire;
  113. }
  114. public void setTimeExpire(string timeExpire)
  115. {
  116. this.timeExpire = timeExpire;
  117. }
  118. public string getAlipayData()
  119. {
  120. return alipayData;
  121. }
  122. public void setAlipayData(string alipayData)
  123. {
  124. this.alipayData = alipayData;
  125. }
  126. }
  127. }