172 lines
2.9 KiB
PHP
172 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Settle\Model;
|
|
|
|
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
|
|
|
class SelfSettleApplyRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $settleRequestNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $operatePeriod;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $endTime;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $notifyUrl;
|
|
|
|
/**
|
|
* Gets parentMerchantNo
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
* @param string $parentMerchantNo
|
|
* @return SelfSettleApplyRequest
|
|
*/
|
|
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 SelfSettleApplyRequest
|
|
*/
|
|
public function setMerchantNo($merchantNo)
|
|
{
|
|
$this->merchantNo = $merchantNo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets settleRequestNo
|
|
* @return string
|
|
*/
|
|
public function getSettleRequestNo()
|
|
{
|
|
return $this->settleRequestNo;
|
|
}
|
|
|
|
/**
|
|
* Sets settleRequestNo
|
|
* @param string $settleRequestNo
|
|
* @return SelfSettleApplyRequest
|
|
*/
|
|
public function setSettleRequestNo($settleRequestNo)
|
|
{
|
|
$this->settleRequestNo = $settleRequestNo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets operatePeriod
|
|
* @return string
|
|
*/
|
|
public function getOperatePeriod()
|
|
{
|
|
return $this->operatePeriod;
|
|
}
|
|
|
|
/**
|
|
* Sets operatePeriod
|
|
* @param string $operatePeriod
|
|
* @return SelfSettleApplyRequest
|
|
*/
|
|
public function setOperatePeriod($operatePeriod)
|
|
{
|
|
$this->operatePeriod = $operatePeriod;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets endTime
|
|
* @return string
|
|
*/
|
|
public function getEndTime()
|
|
{
|
|
return $this->endTime;
|
|
}
|
|
|
|
/**
|
|
* Sets endTime
|
|
* @param string $endTime
|
|
* @return SelfSettleApplyRequest
|
|
*/
|
|
public function setEndTime($endTime)
|
|
{
|
|
$this->endTime = $endTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets notifyUrl
|
|
* @return string
|
|
*/
|
|
public function getNotifyUrl()
|
|
{
|
|
return $this->notifyUrl;
|
|
}
|
|
|
|
/**
|
|
* Sets notifyUrl
|
|
* @param string $notifyUrl
|
|
* @return SelfSettleApplyRequest
|
|
*/
|
|
public function setNotifyUrl($notifyUrl)
|
|
{
|
|
$this->notifyUrl = $notifyUrl;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'selfSettleApply';
|
|
}
|
|
|
|
}
|