123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- class V2QuickbuckleOnekeyCardbindRequest extends BaseRequest
- {
-
- private $reqSeqId;
-
- private $reqDate;
-
- private $huifuId;
-
- private $outCustId;
-
- private $bankId;
-
- private $cardName;
-
- private $certId;
-
- private $certType;
-
- private $certEndDate;
-
- private $cardMp;
-
- private $dcType;
-
- private $asyncReturnUrl;
-
- private $trxDeviceInf;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_QUICKBUCKLE_ONEKEY_CARDBIND;
- }
- public function getReqSeqId() {
- return $this->reqSeqId;
- }
- public function setReqSeqId($reqSeqId) {
- $this->reqSeqId = $reqSeqId;
- }
- public function getReqDate() {
- return $this->reqDate;
- }
- public function setReqDate($reqDate) {
- $this->reqDate = $reqDate;
- }
- public function getHuifuId() {
- return $this->huifuId;
- }
- public function setHuifuId($huifuId) {
- $this->huifuId = $huifuId;
- }
- public function getOutCustId() {
- return $this->outCustId;
- }
- public function setOutCustId($outCustId) {
- $this->outCustId = $outCustId;
- }
- public function getBankId() {
- return $this->bankId;
- }
- public function setBankId($bankId) {
- $this->bankId = $bankId;
- }
- public function getCardName() {
- return $this->cardName;
- }
- public function setCardName($cardName) {
- $this->cardName = $cardName;
- }
- public function getCertId() {
- return $this->certId;
- }
- public function setCertId($certId) {
- $this->certId = $certId;
- }
- public function getCertType() {
- return $this->certType;
- }
- public function setCertType($certType) {
- $this->certType = $certType;
- }
- public function getCertEndDate() {
- return $this->certEndDate;
- }
- public function setCertEndDate($certEndDate) {
- $this->certEndDate = $certEndDate;
- }
- public function getCardMp() {
- return $this->cardMp;
- }
- public function setCardMp($cardMp) {
- $this->cardMp = $cardMp;
- }
- public function getDcType() {
- return $this->dcType;
- }
- public function setDcType($dcType) {
- $this->dcType = $dcType;
- }
- public function getAsyncReturnUrl() {
- return $this->asyncReturnUrl;
- }
- public function setAsyncReturnUrl($asyncReturnUrl) {
- $this->asyncReturnUrl = $asyncReturnUrl;
- }
- public function getTrxDeviceInf() {
- return $this->trxDeviceInf;
- }
- public function setTrxDeviceInf($trxDeviceInf) {
- $this->trxDeviceInf = $trxDeviceInf;
- }
- }
|