V2QuickbuckleConfirmRequest.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 快捷绑卡确认接口
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2QuickbuckleConfirmRequest 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 $orderId;
  32. /**
  33. * 订单日期
  34. */
  35. private $orderDate;
  36. /**
  37. * 银行卡号
  38. */
  39. private $cardId;
  40. /**
  41. * 银行卡开户姓名
  42. */
  43. private $cardName;
  44. /**
  45. * 银行卡绑定证件类型
  46. */
  47. private $certType;
  48. /**
  49. * 银行卡绑定身份证
  50. */
  51. private $certId;
  52. /**
  53. * 银行卡绑定手机号
  54. */
  55. private $cardMp;
  56. /**
  57. * 验证码
  58. */
  59. private $verifyCode;
  60. /**
  61. * CVV2信用卡代扣专用需要密文传输,使用汇付RSA公钥加密(加密前3位,加密后最长2048位),[参见参考文档](https://paas.huifu.com/partners/guide/#/api_jiami_jiemi);&lt;br/&gt;&lt;font color&#x3D;&quot;green&quot;&gt;示例值:Ly+fnExeyPOTzf……rGq0l0NTebfc6XJXZss&#x3D;&lt;/font&gt;
  62. */
  63. private $vipCode;
  64. /**
  65. * 卡有效期信用卡代扣专用,格式:MMYY,需要密文传输。&lt;br/&gt;使用汇付RSA公钥加密(加密前4位,加密后最长2048位),[参见参考文档](https://paas.huifu.com/partners/guide/#/api_jiami_jiemi);&lt;br/&gt;&lt;font color&#x3D;&quot;green&quot;&gt;示例值:Ly+fnExeyPO……ebfc6XJXZss&#x3D;&lt;/font&gt;
  66. */
  67. private $expiration;
  68. /**
  69. * 设备信息域 
  70. */
  71. private $trxDeviceInf;
  72. public function getFunctionCode() {
  73. return FunctionCodeEnum::$V2_QUICKBUCKLE_CONFIRM;
  74. }
  75. public function getReqDate() {
  76. return $this->reqDate;
  77. }
  78. public function setReqDate($reqDate) {
  79. $this->reqDate = $reqDate;
  80. }
  81. public function getReqSeqId() {
  82. return $this->reqSeqId;
  83. }
  84. public function setReqSeqId($reqSeqId) {
  85. $this->reqSeqId = $reqSeqId;
  86. }
  87. public function getHuifuId() {
  88. return $this->huifuId;
  89. }
  90. public function setHuifuId($huifuId) {
  91. $this->huifuId = $huifuId;
  92. }
  93. public function getOutCustId() {
  94. return $this->outCustId;
  95. }
  96. public function setOutCustId($outCustId) {
  97. $this->outCustId = $outCustId;
  98. }
  99. public function getOrderId() {
  100. return $this->orderId;
  101. }
  102. public function setOrderId($orderId) {
  103. $this->orderId = $orderId;
  104. }
  105. public function getOrderDate() {
  106. return $this->orderDate;
  107. }
  108. public function setOrderDate($orderDate) {
  109. $this->orderDate = $orderDate;
  110. }
  111. public function getCardId() {
  112. return $this->cardId;
  113. }
  114. public function setCardId($cardId) {
  115. $this->cardId = $cardId;
  116. }
  117. public function getCardName() {
  118. return $this->cardName;
  119. }
  120. public function setCardName($cardName) {
  121. $this->cardName = $cardName;
  122. }
  123. public function getCertType() {
  124. return $this->certType;
  125. }
  126. public function setCertType($certType) {
  127. $this->certType = $certType;
  128. }
  129. public function getCertId() {
  130. return $this->certId;
  131. }
  132. public function setCertId($certId) {
  133. $this->certId = $certId;
  134. }
  135. public function getCardMp() {
  136. return $this->cardMp;
  137. }
  138. public function setCardMp($cardMp) {
  139. $this->cardMp = $cardMp;
  140. }
  141. public function getVerifyCode() {
  142. return $this->verifyCode;
  143. }
  144. public function setVerifyCode($verifyCode) {
  145. $this->verifyCode = $verifyCode;
  146. }
  147. public function getVipCode() {
  148. return $this->vipCode;
  149. }
  150. public function setVipCode($vipCode) {
  151. $this->vipCode = $vipCode;
  152. }
  153. public function getExpiration() {
  154. return $this->expiration;
  155. }
  156. public function setExpiration($expiration) {
  157. $this->expiration = $expiration;
  158. }
  159. public function getTrxDeviceInf() {
  160. return $this->trxDeviceInf;
  161. }
  162. public function setTrxDeviceInf($trxDeviceInf) {
  163. $this->trxDeviceInf = $trxDeviceInf;
  164. }
  165. }