From abbf55983d5217159b65f15b090bd8bbe4406154 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 2 Mar 2018 10:21:34 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E4=BC=81?= =?UTF-8?q?=E4=B8=9A=E4=BB=98=E6=AC=BE=E5=88=B0=E9=9B=B6=E9=92=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Pay.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/WeChat/Pay.php b/WeChat/Pay.php index e5fcda5..260e8be 100644 --- a/WeChat/Pay.php +++ b/WeChat/Pay.php @@ -187,6 +187,30 @@ class Pay return $this->callPostApi($url, $options, true); } + /** + * 企业付款到零钱 + * @param array $options + * @return array + * @throws InvalidResponseException + */ + public function createTransfers(array $options) + { + $url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers'; + return $this->callPostApi($url, $options, true); + } + + /** + * 查询企业付款到零钱 + * @param string $partner_trade_no 商户调用企业付款API时使用的商户订单号 + * @return array + * @throws InvalidResponseException + */ + public function queryTransfers($partner_trade_no) + { + $url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/gettransferinfo'; + return $this->callPostApi($url, ['partner_trade_no' => $partner_trade_no], true); + } + /** * 获取微信支付通知 * @return array