mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]增加企业付款到零钱
This commit is contained in:
parent
0bbdf10393
commit
abbf55983d
@ -187,6 +187,30 @@ class Pay
|
|||||||
return $this->callPostApi($url, $options, true);
|
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
|
* @return array
|
||||||
|
Loading…
x
Reference in New Issue
Block a user