V2QuickbuckleOnekeyCardbindRequest.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 一键绑卡
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2QuickbuckleOnekeyCardbindRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求时间
  18. */
  19. private string reqDate;
  20. /**
  21. * 汇付Id
  22. */
  23. private string huifuId;
  24. /**
  25. * 顾客用户号 
  26. */
  27. private string outCustId;
  28. /**
  29. * 银行号
  30. */
  31. private string bankId;
  32. /**
  33. * 银行卡开户姓名 
  34. */
  35. private string cardName;
  36. /**
  37. * 银行卡绑定身份证
  38. */
  39. private string certId;
  40. /**
  41. * 银行卡绑定证件类型
  42. */
  43. private string certType;
  44. /**
  45. * 证件有效期到期日长期有效不填.格式:yyyyMMdd。<font color="green">示例值:20311111</font>
  46. */
  47. private string certEndDate;
  48. /**
  49. * 银行卡绑定手机号 
  50. */
  51. private string cardMp;
  52. /**
  53. * 卡的借贷类型
  54. */
  55. private string dcType;
  56. /**
  57. * 异步请求地址
  58. */
  59. private string asyncReturnUrl;
  60. /**
  61. * 设备信息域
  62. */
  63. private string trxDeviceInf;
  64. public override string getFunctionCode() {
  65. return FunctionCodeEnum.V2_QUICKBUCKLE_ONEKEY_CARDBIND;
  66. }
  67. public V2QuickbuckleOnekeyCardbindRequest() {
  68. }
  69. public V2QuickbuckleOnekeyCardbindRequest(string reqSeqId, string reqDate, string huifuId, string outCustId, string bankId, string cardName, string certId, string certType, string certEndDate, string cardMp, string dcType, string asyncReturnUrl, string trxDeviceInf) {
  70. this.reqSeqId = reqSeqId;
  71. this.reqDate = reqDate;
  72. this.huifuId = huifuId;
  73. this.outCustId = outCustId;
  74. this.bankId = bankId;
  75. this.cardName = cardName;
  76. this.certId = certId;
  77. this.certType = certType;
  78. this.certEndDate = certEndDate;
  79. this.cardMp = cardMp;
  80. this.dcType = dcType;
  81. this.asyncReturnUrl = asyncReturnUrl;
  82. this.trxDeviceInf = trxDeviceInf;
  83. }
  84. public string getReqSeqId() {
  85. return reqSeqId;
  86. }
  87. public void setReqSeqId(string reqSeqId) {
  88. this.reqSeqId = reqSeqId;
  89. }
  90. public string getReqDate() {
  91. return reqDate;
  92. }
  93. public void setReqDate(string reqDate) {
  94. this.reqDate = reqDate;
  95. }
  96. public string getHuifuId() {
  97. return huifuId;
  98. }
  99. public void setHuifuId(string huifuId) {
  100. this.huifuId = huifuId;
  101. }
  102. public string getOutCustId() {
  103. return outCustId;
  104. }
  105. public void setOutCustId(string outCustId) {
  106. this.outCustId = outCustId;
  107. }
  108. public string getBankId() {
  109. return bankId;
  110. }
  111. public void setBankId(string bankId) {
  112. this.bankId = bankId;
  113. }
  114. public string getCardName() {
  115. return cardName;
  116. }
  117. public void setCardName(string cardName) {
  118. this.cardName = cardName;
  119. }
  120. public string getCertId() {
  121. return certId;
  122. }
  123. public void setCertId(string certId) {
  124. this.certId = certId;
  125. }
  126. public string getCertType() {
  127. return certType;
  128. }
  129. public void setCertType(string certType) {
  130. this.certType = certType;
  131. }
  132. public string getCertEndDate() {
  133. return certEndDate;
  134. }
  135. public void setCertEndDate(string certEndDate) {
  136. this.certEndDate = certEndDate;
  137. }
  138. public string getCardMp() {
  139. return cardMp;
  140. }
  141. public void setCardMp(string cardMp) {
  142. this.cardMp = cardMp;
  143. }
  144. public string getDcType() {
  145. return dcType;
  146. }
  147. public void setDcType(string dcType) {
  148. this.dcType = dcType;
  149. }
  150. public string getAsyncReturnUrl() {
  151. return asyncReturnUrl;
  152. }
  153. public void setAsyncReturnUrl(string asyncReturnUrl) {
  154. this.asyncReturnUrl = asyncReturnUrl;
  155. }
  156. public string getTrxDeviceInf() {
  157. return trxDeviceInf;
  158. }
  159. public void setTrxDeviceInf(string trxDeviceInf) {
  160. this.trxDeviceInf = trxDeviceInf;
  161. }
  162. }
  163. }