118 lines
2.1 KiB
PHP
118 lines
2.1 KiB
PHP
<?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';
|
|
}
|
|
|
|
|
|
}
|