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.
107 lines
1.9 KiB
107 lines
1.9 KiB
5 months ago
|
<?php
|
||
|
|
||
|
namespace BsPaySdk\request;
|
||
|
|
||
|
use BsPaySdk\enums\FunctionCodeEnum;
|
||
|
|
||
|
/**
|
||
|
* 微信支付宝预授权完成
|
||
|
*
|
||
|
* @author sdk-generator
|
||
|
* @Description
|
||
|
*/
|
||
|
class V2TradePreauthpayRequest extends BaseRequest
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 请求日期
|
||
|
*/
|
||
|
private $reqDate;
|
||
|
/**
|
||
|
* 请求流水号
|
||
|
*/
|
||
|
private $reqSeqId;
|
||
|
/**
|
||
|
* 商户号
|
||
|
*/
|
||
|
private $huifuId;
|
||
|
/**
|
||
|
* 原交易请求日期
|
||
|
*/
|
||
|
private $orgReqDate;
|
||
|
/**
|
||
|
* 交易金额
|
||
|
*/
|
||
|
private $transAmt;
|
||
|
/**
|
||
|
* 商品描述
|
||
|
*/
|
||
|
private $goodsDesc;
|
||
|
/**
|
||
|
* 安全信息
|
||
|
*/
|
||
|
private $riskCheckData;
|
||
|
|
||
|
public function getFunctionCode() {
|
||
|
return FunctionCodeEnum::$V2_TRADE_PREAUTHPAY;
|
||
|
}
|
||
|
|
||
|
|
||
|
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 getOrgReqDate() {
|
||
|
return $this->orgReqDate;
|
||
|
}
|
||
|
|
||
|
public function setOrgReqDate($orgReqDate) {
|
||
|
$this->orgReqDate = $orgReqDate;
|
||
|
}
|
||
|
|
||
|
public function getTransAmt() {
|
||
|
return $this->transAmt;
|
||
|
}
|
||
|
|
||
|
public function setTransAmt($transAmt) {
|
||
|
$this->transAmt = $transAmt;
|
||
|
}
|
||
|
|
||
|
public function getGoodsDesc() {
|
||
|
return $this->goodsDesc;
|
||
|
}
|
||
|
|
||
|
public function setGoodsDesc($goodsDesc) {
|
||
|
$this->goodsDesc = $goodsDesc;
|
||
|
}
|
||
|
|
||
|
public function getRiskCheckData() {
|
||
|
return $this->riskCheckData;
|
||
|
}
|
||
|
|
||
|
public function setRiskCheckData($riskCheckData) {
|
||
|
$this->riskCheckData = $riskCheckData;
|
||
|
}
|
||
|
|
||
|
}
|