diff --git a/We.php b/We.php index 4acafaf..9b982cb 100644 --- a/We.php +++ b/We.php @@ -54,6 +54,7 @@ use WeChat\Exceptions\InvalidInstanceException; * @method \WePay\Bill WePayBill($options = []) static 微信商户账单及评论 * @method \WePay\Order WePayOrder($options = []) static 微信商户订单 * @method \WePay\Refund WePayRefund($options = []) static 微信商户退款 + * @method \WePay\Coupon WePayCoupon($options = []) static 微信商户代金券 * @method \WePay\Redpack WePayRedpack($options = []) static 微信红包支持 * @method \WePay\Transfers WePayTransfers($options = []) static 微信商户打款到零钱 * @method \WePay\TransFresBank WePayTransFresBank($options = []) static 微信商户打款到银行卡 diff --git a/WePay/Coupon.php b/WePay/Coupon.php new file mode 100644 index 0000000..3281048 --- /dev/null +++ b/WePay/Coupon.php @@ -0,0 +1,62 @@ +callPostApi($url, $options, true); + } + + /** + * 查询代金券批次 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function queryStock(array $options) + { + $url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/query_coupon_stock"; + return $this->callPostApi($url, $options, false); + } + + /** + * 查询代金券信息 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function queryInfo(array $options) + { + $url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/query_coupon_stock"; + return $this->callPostApi($url, $options, false); + } + +} \ No newline at end of file