增加聚合支付托管下单
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\MWallet\Model;
|
||||
|
||||
|
||||
class BankAccountQueryWithdrawV10Response extends \Yeepay\Yop\Sdk\Model\BaseResponse
|
||||
{
|
||||
/**
|
||||
* @var QueryBankAccountWithDrawRespDTO
|
||||
*/
|
||||
private $result;
|
||||
|
||||
function getResultClass()
|
||||
{
|
||||
return '\Yeepay\Yop\Sdk\Service\MWallet\Model\QueryBankAccountWithDrawRespDTO';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param QueryBankAccountWithDrawRespDTO $result
|
||||
*/
|
||||
function setResult($result)
|
||||
{
|
||||
$this->result = $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return QueryBankAccountWithDrawRespDTO
|
||||
*/
|
||||
function getResult()
|
||||
{
|
||||
return $this->result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user