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.
95 lines
1.6 KiB
95 lines
1.6 KiB
5 months ago
|
<?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;
|
||
|
}
|
||
|
|
||
|
}
|