V3QuickbuckleApplyRequest.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 快捷绑卡申请接口
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V3QuickbuckleApplyRequest extends BaseRequest
  11. {
  12. /**
  13. * 请求日期
  14. */
  15. private $reqDate;
  16. /**
  17. * 请求流水号
  18. */
  19. private $reqSeqId;
  20. /**
  21. * 汇付客户Id
  22. */
  23. private $huifuId;
  24. /**
  25. * 商户用户id
  26. */
  27. private $outCustId;
  28. /**
  29. * 银行卡号
  30. */
  31. private $cardNo;
  32. /**
  33. * 银行卡开户姓名
  34. */
  35. private $cardName;
  36. /**
  37. * 银行卡绑定身份证
  38. */
  39. private $certNo;
  40. /**
  41. * 个人证件有效期类型
  42. */
  43. private $certValidityType;
  44. /**
  45. * 个人证件有效期起始日
  46. */
  47. private $certBeginDate;
  48. /**
  49. * 个人证件有效期到期日长期有效不填;&lt;font color&#x3D;&quot;green&quot;&gt;示例值:20420905&lt;/font&gt;
  50. */
  51. private $certEndDate;
  52. /**
  53. * 银行卡绑定手机号
  54. */
  55. private $mobileNo;
  56. /**
  57. * 挂网协议编号授权信息(招行绑卡需要上送);&lt;font color&#x3D;&quot;green&quot;&gt;示例值:34463343&lt;/font&gt;
  58. */
  59. private $protocolNo;
  60. public function getFunctionCode() {
  61. return FunctionCodeEnum::$V3_QUICKBUCKLE_APPLY;
  62. }
  63. public function getReqDate() {
  64. return $this->reqDate;
  65. }
  66. public function setReqDate($reqDate) {
  67. $this->reqDate = $reqDate;
  68. }
  69. public function getReqSeqId() {
  70. return $this->reqSeqId;
  71. }
  72. public function setReqSeqId($reqSeqId) {
  73. $this->reqSeqId = $reqSeqId;
  74. }
  75. public function getHuifuId() {
  76. return $this->huifuId;
  77. }
  78. public function setHuifuId($huifuId) {
  79. $this->huifuId = $huifuId;
  80. }
  81. public function getOutCustId() {
  82. return $this->outCustId;
  83. }
  84. public function setOutCustId($outCustId) {
  85. $this->outCustId = $outCustId;
  86. }
  87. public function getCardNo() {
  88. return $this->cardNo;
  89. }
  90. public function setCardNo($cardNo) {
  91. $this->cardNo = $cardNo;
  92. }
  93. public function getCardName() {
  94. return $this->cardName;
  95. }
  96. public function setCardName($cardName) {
  97. $this->cardName = $cardName;
  98. }
  99. public function getCertNo() {
  100. return $this->certNo;
  101. }
  102. public function setCertNo($certNo) {
  103. $this->certNo = $certNo;
  104. }
  105. public function getCertValidityType() {
  106. return $this->certValidityType;
  107. }
  108. public function setCertValidityType($certValidityType) {
  109. $this->certValidityType = $certValidityType;
  110. }
  111. public function getCertBeginDate() {
  112. return $this->certBeginDate;
  113. }
  114. public function setCertBeginDate($certBeginDate) {
  115. $this->certBeginDate = $certBeginDate;
  116. }
  117. public function getCertEndDate() {
  118. return $this->certEndDate;
  119. }
  120. public function setCertEndDate($certEndDate) {
  121. $this->certEndDate = $certEndDate;
  122. }
  123. public function getMobileNo() {
  124. return $this->mobileNo;
  125. }
  126. public function setMobileNo($mobileNo) {
  127. $this->mobileNo = $mobileNo;
  128. }
  129. public function getProtocolNo() {
  130. return $this->protocolNo;
  131. }
  132. public function setProtocolNo($protocolNo) {
  133. $this->protocolNo = $protocolNo;
  134. }
  135. }