增加聚合支付托管下单
This commit is contained in:
192
lib/Service/MWallet/Model/AgreementPaymentNotifyWeb3Request.php
Normal file
192
lib/Service/MWallet/Model/AgreementPaymentNotifyWeb3Request.php
Normal file
@@ -0,0 +1,192 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\MWallet\Model;
|
||||
|
||||
|
||||
class AgreementPaymentNotifyWeb3Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantUserNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $operateTime;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $operateType;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $notifyUrl;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $endTime;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $requestNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
|
||||
/**
|
||||
* Gets merchantUserNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantUserNo()
|
||||
{
|
||||
return $this->merchantUserNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantUserNo
|
||||
*
|
||||
* @param string $merchantUserNo
|
||||
* @return AgreementPaymentNotifyWeb3Request
|
||||
*/
|
||||
public function setMerchantUserNo($merchantUserNo)
|
||||
{
|
||||
$this->merchantUserNo = $merchantUserNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets operateTime
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getOperateTime()
|
||||
{
|
||||
return $this->operateTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets operateTime
|
||||
*
|
||||
* @param string $operateTime
|
||||
* @return AgreementPaymentNotifyWeb3Request
|
||||
*/
|
||||
public function setOperateTime($operateTime)
|
||||
{
|
||||
$this->operateTime = $operateTime;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets operateType
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getOperateType()
|
||||
{
|
||||
return $this->operateType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets operateType
|
||||
*
|
||||
* @param string $operateType
|
||||
* @return AgreementPaymentNotifyWeb3Request
|
||||
*/
|
||||
public function setOperateType($operateType)
|
||||
{
|
||||
$this->operateType = $operateType;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets notifyUrl
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getNotifyUrl()
|
||||
{
|
||||
return $this->notifyUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets notifyUrl
|
||||
*
|
||||
* @param string $notifyUrl
|
||||
* @return AgreementPaymentNotifyWeb3Request
|
||||
*/
|
||||
public function setNotifyUrl($notifyUrl)
|
||||
{
|
||||
$this->notifyUrl = $notifyUrl;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets endTime
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getEndTime()
|
||||
{
|
||||
return $this->endTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets endTime
|
||||
*
|
||||
* @param string $endTime
|
||||
* @return AgreementPaymentNotifyWeb3Request
|
||||
*/
|
||||
public function setEndTime($endTime)
|
||||
{
|
||||
$this->endTime = $endTime;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets requestNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getRequestNo()
|
||||
{
|
||||
return $this->requestNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets requestNo
|
||||
*
|
||||
* @param string $requestNo
|
||||
* @return AgreementPaymentNotifyWeb3Request
|
||||
*/
|
||||
public function setRequestNo($requestNo)
|
||||
{
|
||||
$this->requestNo = $requestNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets merchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
*
|
||||
* @param string $merchantNo
|
||||
* @return AgreementPaymentNotifyWeb3Request
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'agreement_payment_notify_web3';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user