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.
94 lines
1.6 KiB
94 lines
1.6 KiB
<?php
|
|
|
|
namespace BsPaySdk\request;
|
|
|
|
use BsPaySdk\enums\FunctionCodeEnum;
|
|
|
|
/**
|
|
* 钱包支付下单
|
|
*
|
|
* @author sdk-generator
|
|
* @Description
|
|
*/
|
|
class V2WalletTradePayBalanceRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* 请求流水号
|
|
*/
|
|
private $reqSeqId;
|
|
/**
|
|
* 请求日期
|
|
*/
|
|
private $reqDate;
|
|
/**
|
|
* 商户号
|
|
*/
|
|
private $huifuId;
|
|
/**
|
|
* 钱包用户ID
|
|
*/
|
|
private $userHuifuId;
|
|
/**
|
|
* 订单金额
|
|
*/
|
|
private $transAmt;
|
|
/**
|
|
* 跳转地址
|
|
*/
|
|
private $frontUrl;
|
|
|
|
public function getFunctionCode() {
|
|
return FunctionCodeEnum::$V2_WALLET_TRADE_PAY_BALANCE;
|
|
}
|
|
|
|
|
|
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 getUserHuifuId() {
|
|
return $this->userHuifuId;
|
|
}
|
|
|
|
public function setUserHuifuId($userHuifuId) {
|
|
$this->userHuifuId = $userHuifuId;
|
|
}
|
|
|
|
public function getTransAmt() {
|
|
return $this->transAmt;
|
|
}
|
|
|
|
public function setTransAmt($transAmt) {
|
|
$this->transAmt = $transAmt;
|
|
}
|
|
|
|
public function getFrontUrl() {
|
|
return $this->frontUrl;
|
|
}
|
|
|
|
public function setFrontUrl($frontUrl) {
|
|
$this->frontUrl = $frontUrl;
|
|
}
|
|
|
|
}
|
|
|