|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace BsPaySdk\request;
|
|
|
|
|
|
|
|
|
|
use BsPaySdk\enums\FunctionCodeEnum;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 快捷绑卡申请接口
|
|
|
|
|
*
|
|
|
|
|
* @author sdk-generator
|
|
|
|
|
* @Description
|
|
|
|
|
*/
|
|
|
|
|
class V2QuickbuckleApplyRequest extends BaseRequest
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 请求日期
|
|
|
|
|
*/
|
|
|
|
|
private $reqDate;
|
|
|
|
|
/**
|
|
|
|
|
* 请求流水号
|
|
|
|
|
*/
|
|
|
|
|
private $reqSeqId;
|
|
|
|
|
/**
|
|
|
|
|
* 汇付客户Id
|
|
|
|
|
*/
|
|
|
|
|
private $huifuId;
|
|
|
|
|
/**
|
|
|
|
|
* 商户用户id
|
|
|
|
|
*/
|
|
|
|
|
private $outCustId;
|
|
|
|
|
/**
|
|
|
|
|
* 订单号
|
|
|
|
|
*/
|
|
|
|
|
private $orderId;
|
|
|
|
|
/**
|
|
|
|
|
* 订单日期
|
|
|
|
|
*/
|
|
|
|
|
private $orderDate;
|
|
|
|
|
/**
|
|
|
|
|
* 银行卡号
|
|
|
|
|
*/
|
|
|
|
|
private $cardId;
|
|
|
|
|
/**
|
|
|
|
|
* 银行卡开户姓名
|
|
|
|
|
*/
|
|
|
|
|
private $cardName;
|
|
|
|
|
/**
|
|
|
|
|
* 银行卡绑定证件类型
|
|
|
|
|
*/
|
|
|
|
|
private $certType;
|
|
|
|
|
/**
|
|
|
|
|
* 银行卡绑定身份证
|
|
|
|
|
*/
|
|
|
|
|
private $certId;
|
|
|
|
|
/**
|
|
|
|
|
* 个人证件有效期类型
|
|
|
|
|
*/
|
|
|
|
|
private $certValidityType;
|
|
|
|
|
/**
|
|
|
|
|
* 个人证件有效期起始日
|
|
|
|
|
*/
|
|
|
|
|
private $certBeginDate;
|
|
|
|
|
/**
|
|
|
|
|
* 个人证件有效期到期日长期有效不填;<font color="green">示例值:20420905</font>
|
|
|
|
|
*/
|
|
|
|
|
private $certEndDate;
|
|
|
|
|
/**
|
|
|
|
|
* 银行卡绑定手机号
|
|
|
|
|
*/
|
|
|
|
|
private $cardMp;
|
|
|
|
|
/**
|
|
|
|
|
* CVV2信用卡交易专用需要密文传输。<br/>使用汇付RSA公钥加密(加密前3位,加密后最长2048位),[参见参考文档](https://paas.huifu.com/partners/guide/#/api_jiami_jiemi);<br/><font color="green">示例值:Ly+fnExeyPOTzfOtgRRur77nJB9TAe4PGgK9M……fc6XJXZss=</font>
|
|
|
|
|
*/
|
|
|
|
|
private $vipCode;
|
|
|
|
|
/**
|
|
|
|
|
* 卡有效期信用卡交易专用,格式:MMYY,需要密文传输;<br/>使用汇付RSA公钥加密(加密前4位,加密后最长2048位),[参见参考文档](https://paas.huifu.com/partners/guide/#/api_jiami_jiemi);<br/><font color="green">示例值:Ly+fnExeyPOTzfOtgRRur77nJB9TAe4PGgK9M……fc6XJXZss=JXZss=</font>
|
|
|
|
|
*/
|
|
|
|
|
private $expiration;
|
|
|
|
|
/**
|
|
|
|
|
* 挂网协议编号授权信息(招行绑卡需要上送);<font color="green">示例值:34463343</font>
|
|
|
|
|
*/
|
|
|
|
|
private $protocolNo;
|
|
|
|
|
/**
|
|
|
|
|
* 设备信息域
|
|
|
|
|
*/
|
|
|
|
|
private $trxDeviceInf;
|
|
|
|
|
|
|
|
|
|
public function getFunctionCode() {
|
|
|
|
|
return FunctionCodeEnum::$V2_QUICKBUCKLE_APPLY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function getReqDate() {
|
|
|
|
|
return $this->reqDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setReqDate($reqDate) {
|
|
|
|
|
$this->reqDate = $reqDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getReqSeqId() {
|
|
|
|
|
return $this->reqSeqId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setReqSeqId($reqSeqId) {
|
|
|
|
|
$this->reqSeqId = $reqSeqId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 getOrderId() {
|
|
|
|
|
return $this->orderId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setOrderId($orderId) {
|
|
|
|
|
$this->orderId = $orderId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getOrderDate() {
|
|
|
|
|
return $this->orderDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setOrderDate($orderDate) {
|
|
|
|
|
$this->orderDate = $orderDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getCardId() {
|
|
|
|
|
return $this->cardId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setCardId($cardId) {
|
|
|
|
|
$this->cardId = $cardId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getCardName() {
|
|
|
|
|
return $this->cardName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setCardName($cardName) {
|
|
|
|
|
$this->cardName = $cardName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getCertType() {
|
|
|
|
|
return $this->certType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setCertType($certType) {
|
|
|
|
|
$this->certType = $certType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getCertId() {
|
|
|
|
|
return $this->certId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setCertId($certId) {
|
|
|
|
|
$this->certId = $certId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getCertValidityType() {
|
|
|
|
|
return $this->certValidityType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setCertValidityType($certValidityType) {
|
|
|
|
|
$this->certValidityType = $certValidityType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getCertBeginDate() {
|
|
|
|
|
return $this->certBeginDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setCertBeginDate($certBeginDate) {
|
|
|
|
|
$this->certBeginDate = $certBeginDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 getVipCode() {
|
|
|
|
|
return $this->vipCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setVipCode($vipCode) {
|
|
|
|
|
$this->vipCode = $vipCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getExpiration() {
|
|
|
|
|
return $this->expiration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setExpiration($expiration) {
|
|
|
|
|
$this->expiration = $expiration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getProtocolNo() {
|
|
|
|
|
return $this->protocolNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setProtocolNo($protocolNo) {
|
|
|
|
|
$this->protocolNo = $protocolNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getTrxDeviceInf() {
|
|
|
|
|
return $this->trxDeviceInf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setTrxDeviceInf($trxDeviceInf) {
|
|
|
|
|
$this->trxDeviceInf = $trxDeviceInf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|