增加聚合支付托管下单
This commit is contained in:
117
lib/Service/MWallet/Model/TransferB2cQueryRequest.php
Normal file
117
lib/Service/MWallet/Model/TransferB2cQueryRequest.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\MWallet\Model;
|
||||
|
||||
|
||||
class TransferB2cQueryRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $parentMerchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $fromMerchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $requestNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $businessNo;
|
||||
|
||||
/**
|
||||
* Gets parentMerchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getParentMerchantNo()
|
||||
{
|
||||
return $this->parentMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets parentMerchantNo
|
||||
*
|
||||
* @param string $parentMerchantNo
|
||||
* @return TransferB2cQueryRequest
|
||||
*/
|
||||
public function setParentMerchantNo($parentMerchantNo)
|
||||
{
|
||||
$this->parentMerchantNo = $parentMerchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets fromMerchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getFromMerchantNo()
|
||||
{
|
||||
return $this->fromMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets fromMerchantNo
|
||||
*
|
||||
* @param string $fromMerchantNo
|
||||
* @return TransferB2cQueryRequest
|
||||
*/
|
||||
public function setFromMerchantNo($fromMerchantNo)
|
||||
{
|
||||
$this->fromMerchantNo = $fromMerchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets requestNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getRequestNo()
|
||||
{
|
||||
return $this->requestNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets requestNo
|
||||
*
|
||||
* @param string $requestNo
|
||||
* @return TransferB2cQueryRequest
|
||||
*/
|
||||
public function setRequestNo($requestNo)
|
||||
{
|
||||
$this->requestNo = $requestNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets businessNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getBusinessNo()
|
||||
{
|
||||
return $this->businessNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets businessNo
|
||||
*
|
||||
* @param string $businessNo
|
||||
* @return TransferB2cQueryRequest
|
||||
*/
|
||||
public function setBusinessNo($businessNo)
|
||||
{
|
||||
$this->businessNo = $businessNo;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'transferB2cQuery';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user