From 10c4efc58493d3b30d2fa5e7fb5bdb9150191db7 Mon Sep 17 00:00:00 2001 From: Innovation <1028932693@qq.com> Date: Mon, 25 Sep 2023 20:36:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E5=88=86=E8=B4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePay/ProfitSharing.php | 146 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 WePay/ProfitSharing.php diff --git a/WePay/ProfitSharing.php b/WePay/ProfitSharing.php new file mode 100644 index 0000000..7f9acf0 --- /dev/null +++ b/WePay/ProfitSharing.php @@ -0,0 +1,146 @@ +callPostApi($url, $options, true); + } + + /** + * 请求多次分账 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function multiProfitSharing(array $options) + { + $url = 'https://api.mch.weixin.qq.com/secapi/pay/multiprofitsharing'; + return $this->callPostApi($url, $options, true); + } + + /** + * 查询分账结果 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function profitSharingQuery(array $options) + { + $url = 'https://api.mch.weixin.qq.com/pay/profitsharingquery'; + return $this->callPostApi($url, $options); + } + + /** + * 添加分账接收方 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function profitSharingAddReceiver(array $options) + { + $url = 'https://api.mch.weixin.qq.com/pay/profitsharingaddreceiver'; + return $this->callPostApi($url, $options); + } + + /** + * 删除分账接收方 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function profitSharingRemoveReceiver(array $options) + { + $url = 'https://api.mch.weixin.qq.com/pay/profitsharingremovereceiver'; + return $this->callPostApi($url, $options); + } + + /** + * 完结分账 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function profitSharingFinish(array $options) + { + $url = 'https://api.mch.weixin.qq.com/secapi/pay/profitsharingfinish'; + return $this->callPostApi($url, $options, true); + } + + /** + * 查询订单待分账金额 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function profitSharingOrderAmountQuery(array $options) + { + $url = 'https://api.mch.weixin.qq.com/pay/profitsharingorderamountquery'; + return $this->callPostApi($url, $options); + } + + /** + * 分账回退 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function profitSharingReturn(array $options) + { + $url = 'https://api.mch.weixin.qq.com/secapi/pay/profitsharingreturn'; + return $this->callPostApi($url, $options, true); + } + + /** + * 回退结果查询 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function profitSharingReturnQuery(array $options) + { + $url = 'https://api.mch.weixin.qq.com/pay/profitsharingreturnquery'; + return $this->callPostApi($url, $options); + } +}