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.
70 lines
1.2 KiB
70 lines
1.2 KiB
<?php
|
|
|
|
namespace BsPaySdk\request;
|
|
|
|
use BsPaySdk\enums\FunctionCodeEnum;
|
|
|
|
/**
|
|
* 商户统一进件(页面版)
|
|
*
|
|
* @author sdk-generator
|
|
* @Description
|
|
*/
|
|
class V2MerchantUrlForwardRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* 请求流水号
|
|
*/
|
|
private $reqSeqId;
|
|
/**
|
|
* 请求日期
|
|
*/
|
|
private $reqDate;
|
|
/**
|
|
* 渠道商号
|
|
*/
|
|
private $upperHuifuId;
|
|
/**
|
|
* 门店号
|
|
*/
|
|
private $storeId;
|
|
|
|
public function getFunctionCode() {
|
|
return FunctionCodeEnum::$V2_MERCHANT_URL_FORWARD;
|
|
}
|
|
|
|
|
|
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 getUpperHuifuId() {
|
|
return $this->upperHuifuId;
|
|
}
|
|
|
|
public function setUpperHuifuId($upperHuifuId) {
|
|
$this->upperHuifuId = $upperHuifuId;
|
|
}
|
|
|
|
public function getStoreId() {
|
|
return $this->storeId;
|
|
}
|
|
|
|
public function setStoreId($storeId) {
|
|
$this->storeId = $storeId;
|
|
}
|
|
|
|
}
|
|
|