268 lines
4.5 KiB
PHP
268 lines
4.5 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Account\Model;
|
|
|
|
|
|
class TransferWechatOrderRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $requestNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
/**
|
|
* @var float
|
|
*/
|
|
private $amount;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $appId;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $scene;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $openId;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $userName;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $remark;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $notifyUrl;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
|
|
/**
|
|
* Gets requestNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRequestNo()
|
|
{
|
|
return $this->requestNo;
|
|
}
|
|
|
|
/**
|
|
* Sets requestNo
|
|
*
|
|
* @param string $requestNo
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
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 TransferWechatOrderRequest
|
|
*/
|
|
public function setMerchantNo($merchantNo)
|
|
{
|
|
$this->merchantNo = $merchantNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets amount
|
|
*
|
|
* @return float
|
|
*/
|
|
public function getAmount()
|
|
{
|
|
return $this->amount;
|
|
}
|
|
|
|
/**
|
|
* Sets amount
|
|
*
|
|
* @param float $amount
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setAmount($amount)
|
|
{
|
|
$this->amount = $amount;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets appId
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getAppId()
|
|
{
|
|
return $this->appId;
|
|
}
|
|
|
|
/**
|
|
* Sets appId
|
|
*
|
|
* @param string $appId
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setAppId($appId)
|
|
{
|
|
$this->appId = $appId;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets scene
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getScene()
|
|
{
|
|
return $this->scene;
|
|
}
|
|
|
|
/**
|
|
* Sets scene
|
|
*
|
|
* @param string $scene
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setScene($scene)
|
|
{
|
|
$this->scene = $scene;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets openId
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getOpenId()
|
|
{
|
|
return $this->openId;
|
|
}
|
|
|
|
/**
|
|
* Sets openId
|
|
*
|
|
* @param string $openId
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setOpenId($openId)
|
|
{
|
|
$this->openId = $openId;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets userName
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getUserName()
|
|
{
|
|
return $this->userName;
|
|
}
|
|
|
|
/**
|
|
* Sets userName
|
|
*
|
|
* @param string $userName
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setUserName($userName)
|
|
{
|
|
$this->userName = $userName;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets remark
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRemark()
|
|
{
|
|
return $this->remark;
|
|
}
|
|
|
|
/**
|
|
* Sets remark
|
|
*
|
|
* @param string $remark
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setRemark($remark)
|
|
{
|
|
$this->remark = $remark;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets notifyUrl
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getNotifyUrl()
|
|
{
|
|
return $this->notifyUrl;
|
|
}
|
|
|
|
/**
|
|
* Sets notifyUrl
|
|
*
|
|
* @param string $notifyUrl
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setNotifyUrl($notifyUrl)
|
|
{
|
|
$this->notifyUrl = $notifyUrl;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets parentMerchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
*
|
|
* @param string $parentMerchantNo
|
|
* @return TransferWechatOrderRequest
|
|
*/
|
|
public function setParentMerchantNo($parentMerchantNo)
|
|
{
|
|
$this->parentMerchantNo = $parentMerchantNo;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'transferWechatOrder';
|
|
}
|
|
|
|
|
|
}
|