V2QuickbuckleBindCardinfoQueryRequest.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 一键绑卡-工行卡号查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2QuickbuckleBindCardinfoQueryRequest : 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. * 产品Id
  26. */
  27. private string productId;
  28. /**
  29. * 银行卡开户姓名
  30. */
  31. private string cardName;
  32. /**
  33. * 身份证类型
  34. */
  35. private string certType;
  36. /**
  37. * 银行卡绑定身份证
  38. */
  39. private string certNo;
  40. /**
  41. * 银行卡绑定手机号
  42. */
  43. private string cardMobile;
  44. /**
  45. * 回调地址
  46. */
  47. private string notifyUrl;
  48. public override string getFunctionCode() {
  49. return FunctionCodeEnum.V2_QUICKBUCKLE_BIND_CARDINFO_QUERY;
  50. }
  51. public V2QuickbuckleBindCardinfoQueryRequest() {
  52. }
  53. public V2QuickbuckleBindCardinfoQueryRequest(string reqSeqId, string reqDate, string huifuId, string productId, string cardName, string certType, string certNo, string cardMobile, string notifyUrl) {
  54. this.reqSeqId = reqSeqId;
  55. this.reqDate = reqDate;
  56. this.huifuId = huifuId;
  57. this.productId = productId;
  58. this.cardName = cardName;
  59. this.certType = certType;
  60. this.certNo = certNo;
  61. this.cardMobile = cardMobile;
  62. this.notifyUrl = notifyUrl;
  63. }
  64. public string getReqSeqId() {
  65. return reqSeqId;
  66. }
  67. public void setReqSeqId(string reqSeqId) {
  68. this.reqSeqId = reqSeqId;
  69. }
  70. public string getReqDate() {
  71. return reqDate;
  72. }
  73. public void setReqDate(string reqDate) {
  74. this.reqDate = reqDate;
  75. }
  76. public string getHuifuId() {
  77. return huifuId;
  78. }
  79. public void setHuifuId(string huifuId) {
  80. this.huifuId = huifuId;
  81. }
  82. public string getProductId() {
  83. return productId;
  84. }
  85. public void setProductId(string productId) {
  86. this.productId = productId;
  87. }
  88. public string getCardName() {
  89. return cardName;
  90. }
  91. public void setCardName(string cardName) {
  92. this.cardName = cardName;
  93. }
  94. public string getCertType() {
  95. return certType;
  96. }
  97. public void setCertType(string certType) {
  98. this.certType = certType;
  99. }
  100. public string getCertNo() {
  101. return certNo;
  102. }
  103. public void setCertNo(string certNo) {
  104. this.certNo = certNo;
  105. }
  106. public string getCardMobile() {
  107. return cardMobile;
  108. }
  109. public void setCardMobile(string cardMobile) {
  110. this.cardMobile = cardMobile;
  111. }
  112. public string getNotifyUrl() {
  113. return notifyUrl;
  114. }
  115. public void setNotifyUrl(string notifyUrl) {
  116. this.notifyUrl = notifyUrl;
  117. }
  118. }
  119. }