代码提交:extend加入版本控制
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
|
||||
namespace BsPaySdk\request;
|
||||
|
||||
use BsPaySdk\enums\FunctionCodeEnum;
|
||||
|
||||
/**
|
||||
* 结算记录查询
|
||||
*
|
||||
* @author sdk-generator
|
||||
* @Description
|
||||
*/
|
||||
class V2MerchantBasicdataSettlementQueryRequest extends BaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* 请求流水号
|
||||
*/
|
||||
private $reqSeqId;
|
||||
/**
|
||||
* 请求日期
|
||||
*/
|
||||
private $reqDate;
|
||||
/**
|
||||
* 汇付客户Id
|
||||
*/
|
||||
private $huifuId;
|
||||
/**
|
||||
* 结算开始日期
|
||||
*/
|
||||
private $beginDate;
|
||||
/**
|
||||
* 结算结束日期
|
||||
*/
|
||||
private $endDate;
|
||||
/**
|
||||
* 分页条数
|
||||
*/
|
||||
private $pageSize;
|
||||
|
||||
public function getFunctionCode() {
|
||||
return FunctionCodeEnum::$V2_MERCHANT_BASICDATA_SETTLEMENT_QUERY;
|
||||
}
|
||||
|
||||
|
||||
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 getBeginDate() {
|
||||
return $this->beginDate;
|
||||
}
|
||||
|
||||
public function setBeginDate($beginDate) {
|
||||
$this->beginDate = $beginDate;
|
||||
}
|
||||
|
||||
public function getEndDate() {
|
||||
return $this->endDate;
|
||||
}
|
||||
|
||||
public function setEndDate($endDate) {
|
||||
$this->endDate = $endDate;
|
||||
}
|
||||
|
||||
public function getPageSize() {
|
||||
return $this->pageSize;
|
||||
}
|
||||
|
||||
public function setPageSize($pageSize) {
|
||||
$this->pageSize = $pageSize;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user