mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
88 lines
2.6 KiB
PHP
88 lines
2.6 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace AliPay;
|
||
|
||
use WeChat\Contracts\BasicAliPay;
|
||
|
||
/**
|
||
* 支付宝转账到账户
|
||
* Class Transfer
|
||
* @package AliPay
|
||
*/
|
||
class Transfer extends BasicAliPay
|
||
{
|
||
|
||
/**
|
||
* Transfer constructor.
|
||
* @param array $options
|
||
*/
|
||
public function __construct(array $options)
|
||
{
|
||
parent::__construct($options);
|
||
$this->options->set('method', 'alipay.fund.trans.toaccount.transfer');
|
||
}
|
||
|
||
/**
|
||
* 旧版 向指定支付宝账户转账
|
||
* @param array $options
|
||
* @return mixed
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
* @throws \WeChat\Exceptions\LocalCacheException
|
||
*/
|
||
public function apply($options)
|
||
{
|
||
return $this->getResult($options);
|
||
}
|
||
|
||
/**
|
||
* 新版 向指定支付宝账户转账
|
||
* @param array $options
|
||
* @return array|bool
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
* @throws \WeChat\Exceptions\LocalCacheException
|
||
*/
|
||
public function create($options = [])
|
||
{
|
||
$this->options->set('method', 'alipay.fund.trans.uni.transfer');
|
||
return $this->getResult($options);
|
||
}
|
||
|
||
/**
|
||
* 新版 转账业务单据查询接口
|
||
* @param array $options
|
||
* @return array|bool
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
* @throws \WeChat\Exceptions\LocalCacheException
|
||
*/
|
||
public function queryResult($options = [])
|
||
{
|
||
$this->options->set('method', 'alipay.fund.trans.common.query');
|
||
return $this->getResult($options);
|
||
|
||
}
|
||
|
||
/**
|
||
* 新版 支付宝资金账户资产查询接口
|
||
* @param array $options
|
||
* @return array|bool
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
* @throws \WeChat\Exceptions\LocalCacheException
|
||
*/
|
||
public function queryAccount($options = [])
|
||
{
|
||
$this->options->set('method', 'alipay.fund.account.query');
|
||
return $this->getResult($options);
|
||
}
|
||
} |