You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
2.2 KiB
119 lines
2.2 KiB
5 months ago
|
<?php
|
||
|
|
||
|
namespace BsPaySdk\request;
|
||
|
|
||
|
use BsPaySdk\enums\FunctionCodeEnum;
|
||
|
|
||
|
/**
|
||
|
* 快捷支付页面版
|
||
|
*
|
||
|
* @author sdk-generator
|
||
|
* @Description
|
||
|
*/
|
||
|
class V2TradeOnlinepaymentQuickpayFrontpayRequest extends BaseRequest
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 业务请求流水号
|
||
|
*/
|
||
|
private $reqSeqId;
|
||
|
/**
|
||
|
* 请求日期
|
||
|
*/
|
||
|
private $reqDate;
|
||
|
/**
|
||
|
* 商户号
|
||
|
*/
|
||
|
private $huifuId;
|
||
|
/**
|
||
|
* 订单金额
|
||
|
*/
|
||
|
private $transAmt;
|
||
|
/**
|
||
|
* 银行扩展信息
|
||
|
*/
|
||
|
private $extendPayData;
|
||
|
/**
|
||
|
* 设备信息
|
||
|
*/
|
||
|
private $terminalDeviceData;
|
||
|
/**
|
||
|
* 安全信息
|
||
|
*/
|
||
|
private $riskCheckData;
|
||
|
/**
|
||
|
* 异步通知地址
|
||
|
*/
|
||
|
private $notifyUrl;
|
||
|
|
||
|
public function getFunctionCode() {
|
||
|
return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_QUICKPAY_FRONTPAY;
|
||
|
}
|
||
|
|
||
|
|
||
|
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 getTransAmt() {
|
||
|
return $this->transAmt;
|
||
|
}
|
||
|
|
||
|
public function setTransAmt($transAmt) {
|
||
|
$this->transAmt = $transAmt;
|
||
|
}
|
||
|
|
||
|
public function getExtendPayData() {
|
||
|
return $this->extendPayData;
|
||
|
}
|
||
|
|
||
|
public function setExtendPayData($extendPayData) {
|
||
|
$this->extendPayData = $extendPayData;
|
||
|
}
|
||
|
|
||
|
public function getTerminalDeviceData() {
|
||
|
return $this->terminalDeviceData;
|
||
|
}
|
||
|
|
||
|
public function setTerminalDeviceData($terminalDeviceData) {
|
||
|
$this->terminalDeviceData = $terminalDeviceData;
|
||
|
}
|
||
|
|
||
|
public function getRiskCheckData() {
|
||
|
return $this->riskCheckData;
|
||
|
}
|
||
|
|
||
|
public function setRiskCheckData($riskCheckData) {
|
||
|
$this->riskCheckData = $riskCheckData;
|
||
|
}
|
||
|
|
||
|
public function getNotifyUrl() {
|
||
|
return $this->notifyUrl;
|
||
|
}
|
||
|
|
||
|
public function setNotifyUrl($notifyUrl) {
|
||
|
$this->notifyUrl = $notifyUrl;
|
||
|
}
|
||
|
|
||
|
}
|