V2QuickbuckleBindCardinfoQueryRequest.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 一键绑卡-工行卡号查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2QuickbuckleBindCardinfoQueryRequest extends BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private $reqSeqId;
  16. /**
  17. * 请求时间
  18. */
  19. private $reqDate;
  20. /**
  21. * 汇付Id
  22. */
  23. private $huifuId;
  24. /**
  25. * 产品Id
  26. */
  27. private $productId;
  28. /**
  29. * 银行卡开户姓名
  30. */
  31. private $cardName;
  32. /**
  33. * 身份证类型
  34. */
  35. private $certType;
  36. /**
  37. * 银行卡绑定身份证
  38. */
  39. private $certNo;
  40. /**
  41. * 银行卡绑定手机号
  42. */
  43. private $cardMobile;
  44. /**
  45. * 回调地址
  46. */
  47. private $notifyUrl;
  48. public function getFunctionCode() {
  49. return FunctionCodeEnum::$V2_QUICKBUCKLE_BIND_CARDINFO_QUERY;
  50. }
  51. public function getReqSeqId() {
  52. return $this->reqSeqId;
  53. }
  54. public function setReqSeqId($reqSeqId) {
  55. $this->reqSeqId = $reqSeqId;
  56. }
  57. public function getReqDate() {
  58. return $this->reqDate;
  59. }
  60. public function setReqDate($reqDate) {
  61. $this->reqDate = $reqDate;
  62. }
  63. public function getHuifuId() {
  64. return $this->huifuId;
  65. }
  66. public function setHuifuId($huifuId) {
  67. $this->huifuId = $huifuId;
  68. }
  69. public function getProductId() {
  70. return $this->productId;
  71. }
  72. public function setProductId($productId) {
  73. $this->productId = $productId;
  74. }
  75. public function getCardName() {
  76. return $this->cardName;
  77. }
  78. public function setCardName($cardName) {
  79. $this->cardName = $cardName;
  80. }
  81. public function getCertType() {
  82. return $this->certType;
  83. }
  84. public function setCertType($certType) {
  85. $this->certType = $certType;
  86. }
  87. public function getCertNo() {
  88. return $this->certNo;
  89. }
  90. public function setCertNo($certNo) {
  91. $this->certNo = $certNo;
  92. }
  93. public function getCardMobile() {
  94. return $this->cardMobile;
  95. }
  96. public function setCardMobile($cardMobile) {
  97. $this->cardMobile = $cardMobile;
  98. }
  99. public function getNotifyUrl() {
  100. return $this->notifyUrl;
  101. }
  102. public function setNotifyUrl($notifyUrl) {
  103. $this->notifyUrl = $notifyUrl;
  104. }
  105. }