95 lines
1.6 KiB
PHP
95 lines
1.6 KiB
PHP
<?php
|
||
|
||
namespace BsPaySdk\request;
|
||
|
||
use BsPaySdk\enums\FunctionCodeEnum;
|
||
|
||
/**
|
||
* 代扣绑卡查询
|
||
*
|
||
* @author sdk-generator
|
||
* @Description
|
||
*/
|
||
class V2QuickbuckleWithholdQueryRequest extends BaseRequest
|
||
{
|
||
|
||
/**
|
||
* 请求流水号
|
||
*/
|
||
private $reqSeqId;
|
||
/**
|
||
* 请求时间
|
||
*/
|
||
private $reqDate;
|
||
/**
|
||
* 汇付Id
|
||
*/
|
||
private $huifuId;
|
||
/**
|
||
* 客户系统用户id
|
||
*/
|
||
private $outCustId;
|
||
/**
|
||
* 绑卡订单号
|
||
*/
|
||
private $orderId;
|
||
/**
|
||
* 绑卡订单日期
|
||
*/
|
||
private $orderDate;
|
||
|
||
public function getFunctionCode() {
|
||
return FunctionCodeEnum::$V2_QUICKBUCKLE_WITHHOLD_QUERY;
|
||
}
|
||
|
||
|
||
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 getOrderId() {
|
||
return $this->orderId;
|
||
}
|
||
|
||
public function setOrderId($orderId) {
|
||
$this->orderId = $orderId;
|
||
}
|
||
|
||
public function getOrderDate() {
|
||
return $this->orderDate;
|
||
}
|
||
|
||
public function setOrderDate($orderDate) {
|
||
$this->orderDate = $orderDate;
|
||
}
|
||
|
||
}
|