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.
106 lines
2.0 KiB
106 lines
2.0 KiB
<?php
|
|
|
|
namespace BsPaySdk\request;
|
|
|
|
use BsPaySdk\enums\FunctionCodeEnum;
|
|
|
|
/**
|
|
* 汇付入账确认
|
|
*
|
|
* @author sdk-generator
|
|
* @Description
|
|
*/
|
|
class V2TradeOnlinepaymentTransferRemittanceRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* 请求流水号
|
|
*/
|
|
private $reqSeqId;
|
|
/**
|
|
* 请求日期
|
|
*/
|
|
private $reqDate;
|
|
/**
|
|
* 商户号
|
|
*/
|
|
private $huifuId;
|
|
/**
|
|
* 交易金额
|
|
*/
|
|
private $transAmt;
|
|
/**
|
|
* 异步通知地址
|
|
*/
|
|
private $notifyUrl;
|
|
/**
|
|
* 原汇付通道流水号
|
|
*/
|
|
private $orgRemittanceOrderId;
|
|
/**
|
|
* 商品描述
|
|
*/
|
|
private $goodsDesc;
|
|
|
|
public function getFunctionCode() {
|
|
return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_TRANSFER_REMITTANCE;
|
|
}
|
|
|
|
|
|
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 getNotifyUrl() {
|
|
return $this->notifyUrl;
|
|
}
|
|
|
|
public function setNotifyUrl($notifyUrl) {
|
|
$this->notifyUrl = $notifyUrl;
|
|
}
|
|
|
|
public function getOrgRemittanceOrderId() {
|
|
return $this->orgRemittanceOrderId;
|
|
}
|
|
|
|
public function setOrgRemittanceOrderId($orgRemittanceOrderId) {
|
|
$this->orgRemittanceOrderId = $orgRemittanceOrderId;
|
|
}
|
|
|
|
public function getGoodsDesc() {
|
|
return $this->goodsDesc;
|
|
}
|
|
|
|
public function setGoodsDesc($goodsDesc) {
|
|
$this->goodsDesc = $goodsDesc;
|
|
}
|
|
|
|
}
|
|
|