diff --git a/AliPay/Transfer.php b/AliPay/Transfer.php index bb745cf..607d478 100644 --- a/AliPay/Transfer.php +++ b/AliPay/Transfer.php @@ -35,7 +35,7 @@ class Transfer extends BasicAliPay } /** - * 创建数据操作 + * 旧版 向指定支付宝账户转账 * @param array $options * @return mixed * @throws \WeChat\Exceptions\InvalidResponseException @@ -45,4 +45,44 @@ class Transfer extends BasicAliPay { 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); + } } \ No newline at end of file diff --git a/We.php b/We.php index f4bb06b..a81ff1a 100644 --- a/We.php +++ b/We.php @@ -81,7 +81,7 @@ class We * 定义当前版本 * @var string */ - const VERSION = '1.2.13'; + const VERSION = '1.2.17'; /** * 静态配置 diff --git a/_test/alipay-transfer-account.php b/_test/alipay-transfer-account.php new file mode 100644 index 0000000..1d2b289 --- /dev/null +++ b/_test/alipay-transfer-account.php @@ -0,0 +1,37 @@ +queryAccount([ + 'alipay_user_id' => $config['appid'], // 订单号 + 'account_scene_code' => 'SCENE_000_000_000', + ]); + echo '
'; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + diff --git a/_test/alipay-transfer-create.php b/_test/alipay-transfer-create.php new file mode 100644 index 0000000..39d0fc4 --- /dev/null +++ b/_test/alipay-transfer-create.php @@ -0,0 +1,44 @@ +create([ + 'out_biz_no' => time(), // 订单号 + 'trans_amount' => '10', // 转账金额 + 'product_code' => 'TRANS_ACCOUNT_NO_PWD', + 'biz_scene' => 'DIRECT_TRANSFER', + 'payee_info' => [ + 'identity' => 'zoujingli@qq.com', + 'identity_type' => 'ALIPAY_LOGON_ID', + 'name' => '邹景立', + ], + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + diff --git a/_test/alipay-transfer-query.php b/_test/alipay-transfer-query.php new file mode 100644 index 0000000..7e7d99f --- /dev/null +++ b/_test/alipay-transfer-query.php @@ -0,0 +1,38 @@ +queryResult([ + 'out_biz_no' => '201808080001', // 订单号 + 'product_code' => 'TRANS_ACCOUNT_NO_PWD', + 'biz_scene' => 'DIRECT_TRANSFER', + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} +