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.
58 lines
990 B
58 lines
990 B
<?php
|
|
|
|
namespace BsPaySdk\request;
|
|
|
|
use BsPaySdk\enums\FunctionCodeEnum;
|
|
|
|
/**
|
|
* 批量出金交易查询
|
|
*
|
|
* @author sdk-generator
|
|
* @Description
|
|
*/
|
|
class V2TradeBatchtranslogQueryRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* 商户号
|
|
*/
|
|
private $huifuId;
|
|
/**
|
|
* 开始日期
|
|
*/
|
|
private $beginDate;
|
|
/**
|
|
* 结束日期
|
|
*/
|
|
private $endDate;
|
|
|
|
public function getFunctionCode() {
|
|
return FunctionCodeEnum::$V2_TRADE_BATCHTRANSLOG_QUERY;
|
|
}
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
}
|
|
|