增加聚合支付托管下单
This commit is contained in:
117
lib/Service/Account/Model/RechargeBatchQueryRequest.php
Normal file
117
lib/Service/Account/Model/RechargeBatchQueryRequest.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Account\Model;
|
||||
|
||||
|
||||
class RechargeBatchQueryRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $parentMerchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $queryStartDate;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $queryEndDate;
|
||||
|
||||
/**
|
||||
* Gets parentMerchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getParentMerchantNo()
|
||||
{
|
||||
return $this->parentMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets parentMerchantNo
|
||||
*
|
||||
* @param string $parentMerchantNo
|
||||
* @return RechargeBatchQueryRequest
|
||||
*/
|
||||
public function setParentMerchantNo($parentMerchantNo)
|
||||
{
|
||||
$this->parentMerchantNo = $parentMerchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets merchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
*
|
||||
* @param string $merchantNo
|
||||
* @return RechargeBatchQueryRequest
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets queryStartDate
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getQueryStartDate()
|
||||
{
|
||||
return $this->queryStartDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets queryStartDate
|
||||
*
|
||||
* @param string $queryStartDate
|
||||
* @return RechargeBatchQueryRequest
|
||||
*/
|
||||
public function setQueryStartDate($queryStartDate)
|
||||
{
|
||||
$this->queryStartDate = $queryStartDate;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets queryEndDate
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getQueryEndDate()
|
||||
{
|
||||
return $this->queryEndDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets queryEndDate
|
||||
*
|
||||
* @param string $queryEndDate
|
||||
* @return RechargeBatchQueryRequest
|
||||
*/
|
||||
public function setQueryEndDate($queryEndDate)
|
||||
{
|
||||
$this->queryEndDate = $queryEndDate;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'rechargeBatchQuery';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user