172 lines
2.9 KiB
PHP
172 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Divide\Model;
|
|
|
|
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
|
|
|
class DivideRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $orderId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $uniqueOrderNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $divideRequestId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $divideDetail;
|
|
|
|
/**
|
|
* Gets parentMerchantNo
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
* @param string $parentMerchantNo
|
|
* @return DivideRequest
|
|
*/
|
|
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 DivideRequest
|
|
*/
|
|
public function setMerchantNo($merchantNo)
|
|
{
|
|
$this->merchantNo = $merchantNo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets orderId
|
|
* @return string
|
|
*/
|
|
public function getOrderId()
|
|
{
|
|
return $this->orderId;
|
|
}
|
|
|
|
/**
|
|
* Sets orderId
|
|
* @param string $orderId
|
|
* @return DivideRequest
|
|
*/
|
|
public function setOrderId($orderId)
|
|
{
|
|
$this->orderId = $orderId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets uniqueOrderNo
|
|
* @return string
|
|
*/
|
|
public function getUniqueOrderNo()
|
|
{
|
|
return $this->uniqueOrderNo;
|
|
}
|
|
|
|
/**
|
|
* Sets uniqueOrderNo
|
|
* @param string $uniqueOrderNo
|
|
* @return DivideRequest
|
|
*/
|
|
public function setUniqueOrderNo($uniqueOrderNo)
|
|
{
|
|
$this->uniqueOrderNo = $uniqueOrderNo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets divideRequestId
|
|
* @return string
|
|
*/
|
|
public function getDivideRequestId()
|
|
{
|
|
return $this->divideRequestId;
|
|
}
|
|
|
|
/**
|
|
* Sets divideRequestId
|
|
* @param string $divideRequestId
|
|
* @return DivideRequest
|
|
*/
|
|
public function setDivideRequestId($divideRequestId)
|
|
{
|
|
$this->divideRequestId = $divideRequestId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets divideDetail
|
|
* @return string
|
|
*/
|
|
public function getDivideDetail()
|
|
{
|
|
return $this->divideDetail;
|
|
}
|
|
|
|
/**
|
|
* Sets divideDetail
|
|
* @param string $divideDetail
|
|
* @return DivideRequest
|
|
*/
|
|
public function setDivideDetail($divideDetail)
|
|
{
|
|
$this->divideDetail = $divideDetail;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'divide';
|
|
}
|
|
|
|
}
|