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.
95 lines
1.6 KiB
95 lines
1.6 KiB
5 months ago
|
<?php
|
||
|
|
||
|
namespace BsPaySdk\request;
|
||
|
|
||
|
use BsPaySdk\enums\FunctionCodeEnum;
|
||
|
|
||
|
/**
|
||
|
* 快捷支付确认
|
||
|
*
|
||
|
* @author sdk-generator
|
||
|
* @Description
|
||
|
*/
|
||
|
class V2TradeOnlinepaymentQuickpayConfirmRequest extends BaseRequest
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 请求日期
|
||
|
*/
|
||
|
private $reqDate;
|
||
|
/**
|
||
|
* 请求流水号
|
||
|
*/
|
||
|
private $reqSeqId;
|
||
|
/**
|
||
|
* 商户号
|
||
|
*/
|
||
|
private $huifuId;
|
||
|
/**
|
||
|
* 短信验证码
|
||
|
*/
|
||
|
private $smsCode;
|
||
|
/**
|
||
|
* 商品描述
|
||
|
*/
|
||
|
private $goodsDesc;
|
||
|
/**
|
||
|
* 外部地址
|
||
|
*/
|
||
|
private $notifyUrl;
|
||
|
|
||
|
public function getFunctionCode() {
|
||
|
return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_QUICKPAY_CONFIRM;
|
||
|
}
|
||
|
|
||
|
|
||
|
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 getSmsCode() {
|
||
|
return $this->smsCode;
|
||
|
}
|
||
|
|
||
|
public function setSmsCode($smsCode) {
|
||
|
$this->smsCode = $smsCode;
|
||
|
}
|
||
|
|
||
|
public function getGoodsDesc() {
|
||
|
return $this->goodsDesc;
|
||
|
}
|
||
|
|
||
|
public function setGoodsDesc($goodsDesc) {
|
||
|
$this->goodsDesc = $goodsDesc;
|
||
|
}
|
||
|
|
||
|
public function getNotifyUrl() {
|
||
|
return $this->notifyUrl;
|
||
|
}
|
||
|
|
||
|
public function setNotifyUrl($notifyUrl) {
|
||
|
$this->notifyUrl = $notifyUrl;
|
||
|
}
|
||
|
|
||
|
}
|