V2TradeOnlinepaymentWithholdpayRequest.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 代扣支付
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradeOnlinepaymentWithholdpayRequest : 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 userHuifuId;
  28. /**
  29. * 绑卡id
  30. */
  31. private string cardBindId;
  32. /**
  33. * 订单金额
  34. */
  35. private string transAmt;
  36. /**
  37. * 商品描述
  38. */
  39. private string goodsDesc;
  40. /**
  41. * 代扣类型
  42. */
  43. private string withholdType;
  44. /**
  45. * 银行扩展数据
  46. */
  47. private string extendPayData;
  48. /**
  49. * 风控信息
  50. */
  51. private string riskCheckData;
  52. /**
  53. * 设备信息数据
  54. */
  55. private string terminalDeviceData;
  56. /**
  57. * 异步通知地址
  58. */
  59. private string notifyUrl;
  60. public override string getFunctionCode() {
  61. return FunctionCodeEnum.V2_TRADE_ONLINEPAYMENT_WITHHOLDPAY;
  62. }
  63. public V2TradeOnlinepaymentWithholdpayRequest() {
  64. }
  65. public V2TradeOnlinepaymentWithholdpayRequest(string reqDate, string reqSeqId, string huifuId, string userHuifuId, string cardBindId, string transAmt, string goodsDesc, string withholdType, string extendPayData, string riskCheckData, string terminalDeviceData, string notifyUrl) {
  66. this.reqDate = reqDate;
  67. this.reqSeqId = reqSeqId;
  68. this.huifuId = huifuId;
  69. this.userHuifuId = userHuifuId;
  70. this.cardBindId = cardBindId;
  71. this.transAmt = transAmt;
  72. this.goodsDesc = goodsDesc;
  73. this.withholdType = withholdType;
  74. this.extendPayData = extendPayData;
  75. this.riskCheckData = riskCheckData;
  76. this.terminalDeviceData = terminalDeviceData;
  77. this.notifyUrl = notifyUrl;
  78. }
  79. public string getReqDate() {
  80. return reqDate;
  81. }
  82. public void setReqDate(string reqDate) {
  83. this.reqDate = reqDate;
  84. }
  85. public string getReqSeqId() {
  86. return reqSeqId;
  87. }
  88. public void setReqSeqId(string reqSeqId) {
  89. this.reqSeqId = reqSeqId;
  90. }
  91. public string getHuifuId() {
  92. return huifuId;
  93. }
  94. public void setHuifuId(string huifuId) {
  95. this.huifuId = huifuId;
  96. }
  97. public string getUserHuifuId() {
  98. return userHuifuId;
  99. }
  100. public void setUserHuifuId(string userHuifuId) {
  101. this.userHuifuId = userHuifuId;
  102. }
  103. public string getCardBindId() {
  104. return cardBindId;
  105. }
  106. public void setCardBindId(string cardBindId) {
  107. this.cardBindId = cardBindId;
  108. }
  109. public string getTransAmt() {
  110. return transAmt;
  111. }
  112. public void setTransAmt(string transAmt) {
  113. this.transAmt = transAmt;
  114. }
  115. public string getGoodsDesc() {
  116. return goodsDesc;
  117. }
  118. public void setGoodsDesc(string goodsDesc) {
  119. this.goodsDesc = goodsDesc;
  120. }
  121. public string getWithholdType() {
  122. return withholdType;
  123. }
  124. public void setWithholdType(string withholdType) {
  125. this.withholdType = withholdType;
  126. }
  127. public string getExtendPayData() {
  128. return extendPayData;
  129. }
  130. public void setExtendPayData(string extendPayData) {
  131. this.extendPayData = extendPayData;
  132. }
  133. public string getRiskCheckData() {
  134. return riskCheckData;
  135. }
  136. public void setRiskCheckData(string riskCheckData) {
  137. this.riskCheckData = riskCheckData;
  138. }
  139. public string getTerminalDeviceData() {
  140. return terminalDeviceData;
  141. }
  142. public void setTerminalDeviceData(string terminalDeviceData) {
  143. this.terminalDeviceData = terminalDeviceData;
  144. }
  145. public string getNotifyUrl() {
  146. return notifyUrl;
  147. }
  148. public void setNotifyUrl(string notifyUrl) {
  149. this.notifyUrl = notifyUrl;
  150. }
  151. }
  152. }