process(); } /** * 微信js通道支付回调 * @return ResponseInterface * @throws ContainerExceptionInterface * @throws InvalidParamsException * @throws NotFoundExceptionInterface */ #[RequestMapping(path: "/common/wxPay/order/js/callBack", methods: "post")] public function wxJsPayCallBack(): ResponseInterface { return (new WxJsRechargeOrderService)->callBackHandle(); } /** * 微信js通道退款回调 * @return ResponseInterface * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface * @throws InvalidParamsException */ #[RequestMapping(path: "/common/wxPay/order/js/refund/callBack", methods: "post")] public function wxJsRefundCallBack(): ResponseInterface { return (new WxJsRechargeOrderService)->refundCallBackHandle(); } }