V2QuickbuckleWithholdApplyRequest.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 代扣绑卡申请
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2QuickbuckleWithholdApplyRequest : 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 returnUrl;
  28. /**
  29. * 用户id
  30. */
  31. private string outCustId;
  32. /**
  33. * 绑卡订单号
  34. */
  35. private string orderId;
  36. /**
  37. * 绑卡订单日期
  38. */
  39. private string orderDate;
  40. /**
  41. * 银行卡号
  42. */
  43. private string cardId;
  44. /**
  45. * 银行卡开户姓名 
  46. */
  47. private string cardName;
  48. /**
  49. * 银行卡绑定证件类型 
  50. */
  51. private string certType;
  52. /**
  53. * 银行卡绑定身份证
  54. */
  55. private string certId;
  56. /**
  57. * 银行卡绑定手机号 
  58. */
  59. private string cardMp;
  60. /**
  61. * CVV2信用卡代扣专用 需要密文传输,需要密文传输,使用汇付RSA公钥加密(加密前64位,加密后最长2048位),参见[参考文档](https://paas.huifu.com/open/doc/guide/#/api_jiami_jiemi);
  62. */
  63. private string vipCode;
  64. /**
  65. * 卡有效期 信用卡代扣专用,格式:MMYY 需要密文传输,使用汇付RSA公钥加密(加密前64位,加密后最长2048位),参见[参考文档](https://paas.huifu.com/open/doc/guide/#/api_jiami_jiemi);
  66. */
  67. private string expiration;
  68. /**
  69. * 个人证件有效期类型
  70. */
  71. private string certValidityType;
  72. /**
  73. * 个人证件有效期起始日
  74. */
  75. private string certBeginDate;
  76. /**
  77. * 个人证件有效期到期日长期有效不填.格式:YYYYMMDD;<font color="green">示例值:20450112</font>
  78. */
  79. private string certEndDate;
  80. /**
  81. * 卡的借贷类型
  82. */
  83. private string dcType;
  84. public override string getFunctionCode() {
  85. return FunctionCodeEnum.V2_QUICKBUCKLE_WITHHOLD_APPLY;
  86. }
  87. public V2QuickbuckleWithholdApplyRequest() {
  88. }
  89. public V2QuickbuckleWithholdApplyRequest(string reqSeqId, string reqDate, string huifuId, string returnUrl, string outCustId, string orderId, string orderDate, string cardId, string cardName, string certType, string certId, string cardMp, string vipCode, string expiration, string certValidityType, string certBeginDate, string certEndDate, string dcType) {
  90. this.reqSeqId = reqSeqId;
  91. this.reqDate = reqDate;
  92. this.huifuId = huifuId;
  93. this.returnUrl = returnUrl;
  94. this.outCustId = outCustId;
  95. this.orderId = orderId;
  96. this.orderDate = orderDate;
  97. this.cardId = cardId;
  98. this.cardName = cardName;
  99. this.certType = certType;
  100. this.certId = certId;
  101. this.cardMp = cardMp;
  102. this.vipCode = vipCode;
  103. this.expiration = expiration;
  104. this.certValidityType = certValidityType;
  105. this.certBeginDate = certBeginDate;
  106. this.certEndDate = certEndDate;
  107. this.dcType = dcType;
  108. }
  109. public string getReqSeqId() {
  110. return reqSeqId;
  111. }
  112. public void setReqSeqId(string reqSeqId) {
  113. this.reqSeqId = reqSeqId;
  114. }
  115. public string getReqDate() {
  116. return reqDate;
  117. }
  118. public void setReqDate(string reqDate) {
  119. this.reqDate = reqDate;
  120. }
  121. public string getHuifuId() {
  122. return huifuId;
  123. }
  124. public void setHuifuId(string huifuId) {
  125. this.huifuId = huifuId;
  126. }
  127. public string getReturnUrl() {
  128. return returnUrl;
  129. }
  130. public void setReturnUrl(string returnUrl) {
  131. this.returnUrl = returnUrl;
  132. }
  133. public string getOutCustId() {
  134. return outCustId;
  135. }
  136. public void setOutCustId(string outCustId) {
  137. this.outCustId = outCustId;
  138. }
  139. public string getOrderId() {
  140. return orderId;
  141. }
  142. public void setOrderId(string orderId) {
  143. this.orderId = orderId;
  144. }
  145. public string getOrderDate() {
  146. return orderDate;
  147. }
  148. public void setOrderDate(string orderDate) {
  149. this.orderDate = orderDate;
  150. }
  151. public string getCardId() {
  152. return cardId;
  153. }
  154. public void setCardId(string cardId) {
  155. this.cardId = cardId;
  156. }
  157. public string getCardName() {
  158. return cardName;
  159. }
  160. public void setCardName(string cardName) {
  161. this.cardName = cardName;
  162. }
  163. public string getCertType() {
  164. return certType;
  165. }
  166. public void setCertType(string certType) {
  167. this.certType = certType;
  168. }
  169. public string getCertId() {
  170. return certId;
  171. }
  172. public void setCertId(string certId) {
  173. this.certId = certId;
  174. }
  175. public string getCardMp() {
  176. return cardMp;
  177. }
  178. public void setCardMp(string cardMp) {
  179. this.cardMp = cardMp;
  180. }
  181. public string getVipCode() {
  182. return vipCode;
  183. }
  184. public void setVipCode(string vipCode) {
  185. this.vipCode = vipCode;
  186. }
  187. public string getExpiration() {
  188. return expiration;
  189. }
  190. public void setExpiration(string expiration) {
  191. this.expiration = expiration;
  192. }
  193. public string getCertValidityType() {
  194. return certValidityType;
  195. }
  196. public void setCertValidityType(string certValidityType) {
  197. this.certValidityType = certValidityType;
  198. }
  199. public string getCertBeginDate() {
  200. return certBeginDate;
  201. }
  202. public void setCertBeginDate(string certBeginDate) {
  203. this.certBeginDate = certBeginDate;
  204. }
  205. public string getCertEndDate() {
  206. return certEndDate;
  207. }
  208. public void setCertEndDate(string certEndDate) {
  209. this.certEndDate = certEndDate;
  210. }
  211. public string getDcType() {
  212. return dcType;
  213. }
  214. public void setDcType(string dcType) {
  215. this.dcType = dcType;
  216. }
  217. }
  218. }