V2QuickbuckleApplyRequest.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 快捷绑卡申请接口
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2QuickbuckleApplyRequest 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 $certValidityType;
  56. /**
  57. * 个人证件有效期起始日
  58. */
  59. private $certBeginDate;
  60. /**
  61. * 个人证件有效期到期日长期有效不填;&lt;font color&#x3D;&quot;green&quot;&gt;示例值:20420905&lt;/font&gt;
  62. */
  63. private $certEndDate;
  64. /**
  65. * 银行卡绑定手机号
  66. */
  67. private $cardMp;
  68. /**
  69. * CVV2信用卡交易专用需要密文传输。&lt;br/&gt;使用汇付RSA公钥加密(加密前3位,加密后最长2048位),[参见参考文档](https://paas.huifu.com/partners/guide/#/api_jiami_jiemi);&lt;br/&gt;&lt;font color&#x3D;&quot;green&quot;&gt;示例值:Ly+fnExeyPOTzfOtgRRur77nJB9TAe4PGgK9M……fc6XJXZss&#x3D;&lt;/font&gt;
  70. */
  71. private $vipCode;
  72. /**
  73. * 卡有效期信用卡交易专用,格式: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+fnExeyPOTzfOtgRRur77nJB9TAe4PGgK9M……fc6XJXZss&#x3D;JXZss&#x3D;&lt;/font&gt;
  74. */
  75. private $expiration;
  76. /**
  77. * 挂网协议编号授权信息(招行绑卡需要上送);&lt;font color&#x3D;&quot;green&quot;&gt;示例值:34463343&lt;/font&gt;
  78. */
  79. private $protocolNo;
  80. /**
  81. * 设备信息域 
  82. */
  83. private $trxDeviceInf;
  84. public function getFunctionCode() {
  85. return FunctionCodeEnum::$V2_QUICKBUCKLE_APPLY;
  86. }
  87. public function getReqDate() {
  88. return $this->reqDate;
  89. }
  90. public function setReqDate($reqDate) {
  91. $this->reqDate = $reqDate;
  92. }
  93. public function getReqSeqId() {
  94. return $this->reqSeqId;
  95. }
  96. public function setReqSeqId($reqSeqId) {
  97. $this->reqSeqId = $reqSeqId;
  98. }
  99. public function getHuifuId() {
  100. return $this->huifuId;
  101. }
  102. public function setHuifuId($huifuId) {
  103. $this->huifuId = $huifuId;
  104. }
  105. public function getOutCustId() {
  106. return $this->outCustId;
  107. }
  108. public function setOutCustId($outCustId) {
  109. $this->outCustId = $outCustId;
  110. }
  111. public function getOrderId() {
  112. return $this->orderId;
  113. }
  114. public function setOrderId($orderId) {
  115. $this->orderId = $orderId;
  116. }
  117. public function getOrderDate() {
  118. return $this->orderDate;
  119. }
  120. public function setOrderDate($orderDate) {
  121. $this->orderDate = $orderDate;
  122. }
  123. public function getCardId() {
  124. return $this->cardId;
  125. }
  126. public function setCardId($cardId) {
  127. $this->cardId = $cardId;
  128. }
  129. public function getCardName() {
  130. return $this->cardName;
  131. }
  132. public function setCardName($cardName) {
  133. $this->cardName = $cardName;
  134. }
  135. public function getCertType() {
  136. return $this->certType;
  137. }
  138. public function setCertType($certType) {
  139. $this->certType = $certType;
  140. }
  141. public function getCertId() {
  142. return $this->certId;
  143. }
  144. public function setCertId($certId) {
  145. $this->certId = $certId;
  146. }
  147. public function getCertValidityType() {
  148. return $this->certValidityType;
  149. }
  150. public function setCertValidityType($certValidityType) {
  151. $this->certValidityType = $certValidityType;
  152. }
  153. public function getCertBeginDate() {
  154. return $this->certBeginDate;
  155. }
  156. public function setCertBeginDate($certBeginDate) {
  157. $this->certBeginDate = $certBeginDate;
  158. }
  159. public function getCertEndDate() {
  160. return $this->certEndDate;
  161. }
  162. public function setCertEndDate($certEndDate) {
  163. $this->certEndDate = $certEndDate;
  164. }
  165. public function getCardMp() {
  166. return $this->cardMp;
  167. }
  168. public function setCardMp($cardMp) {
  169. $this->cardMp = $cardMp;
  170. }
  171. public function getVipCode() {
  172. return $this->vipCode;
  173. }
  174. public function setVipCode($vipCode) {
  175. $this->vipCode = $vipCode;
  176. }
  177. public function getExpiration() {
  178. return $this->expiration;
  179. }
  180. public function setExpiration($expiration) {
  181. $this->expiration = $expiration;
  182. }
  183. public function getProtocolNo() {
  184. return $this->protocolNo;
  185. }
  186. public function setProtocolNo($protocolNo) {
  187. $this->protocolNo = $protocolNo;
  188. }
  189. public function getTrxDeviceInf() {
  190. return $this->trxDeviceInf;
  191. }
  192. public function setTrxDeviceInf($trxDeviceInf) {
  193. $this->trxDeviceInf = $trxDeviceInf;
  194. }
  195. }