增加聚合支付托管下单
This commit is contained in:
67
lib/Service/Promtion/Model/FrozenRightsRequest.php
Normal file
67
lib/Service/Promtion/Model/FrozenRightsRequest.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Promtion\Model;
|
||||
|
||||
|
||||
class FrozenRightsRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $productNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
|
||||
/**
|
||||
* Gets productNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getProductNo()
|
||||
{
|
||||
return $this->productNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets productNo
|
||||
*
|
||||
* @param string $productNo
|
||||
* @return FrozenRightsRequest
|
||||
*/
|
||||
public function setProductNo($productNo)
|
||||
{
|
||||
$this->productNo = $productNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets merchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
*
|
||||
* @param string $merchantNo
|
||||
* @return FrozenRightsRequest
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'frozen_rights';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user