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 CompleteRequest 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 $divideDetailDesc;
|
|
|
|
/**
|
|
* Gets parentMerchantNo
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
* @param string $parentMerchantNo
|
|
* @return CompleteRequest
|
|
*/
|
|
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 CompleteRequest
|
|
*/
|
|
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 CompleteRequest
|
|
*/
|
|
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 CompleteRequest
|
|
*/
|
|
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 CompleteRequest
|
|
*/
|
|
public function setDivideRequestId($divideRequestId)
|
|
{
|
|
$this->divideRequestId = $divideRequestId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets divideDetailDesc
|
|
* @return string
|
|
*/
|
|
public function getDivideDetailDesc()
|
|
{
|
|
return $this->divideDetailDesc;
|
|
}
|
|
|
|
/**
|
|
* Sets divideDetailDesc
|
|
* @param string $divideDetailDesc
|
|
* @return CompleteRequest
|
|
*/
|
|
public function setDivideDetailDesc($divideDetailDesc)
|
|
{
|
|
$this->divideDetailDesc = $divideDetailDesc;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'complete';
|
|
}
|
|
|
|
}
|