From 91f82652d3a19efa3da0be659aa8954bbde2c712 Mon Sep 17 00:00:00 2001 From: zyy <zyy@email.com> Date: Tue, 28 Oct 2025 14:03:59 +0800 Subject: [PATCH] 1 --- src/main/java/com/nq/service/IPayService.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/nq/service/IPayService.java b/src/main/java/com/nq/service/IPayService.java index fdf38a2..61d5b44 100644 --- a/src/main/java/com/nq/service/IPayService.java +++ b/src/main/java/com/nq/service/IPayService.java @@ -2,8 +2,11 @@ import com.nq.common.ServerResponse; +import com.nq.pojo.PaymentResponse; +import com.nq.pojo.RechargeCallbackVo; import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.UnsupportedEncodingException; @@ -18,11 +21,13 @@ ServerResponse juhenewpayNotify(HttpServletRequest paramHttpServletRequest) throws UnsupportedEncodingException; - ServerResponse flyPay(String paramString1, String paramString2, String paramString3, HttpServletRequest paramHttpServletRequest); + ServerResponse flyPay(Integer paramString1, String paramString2, String paramString3, HttpServletRequest paramHttpServletRequest); ServerResponse flyNotify(HttpServletRequest paramHttpServletRequest) throws IOException; ServerResponse flyNotify(HttpServletRequest paramHttpServletRequest,String key) throws IOException; ServerResponse withdrawNotify(HttpServletRequest paramHttpServletRequest,String key) throws IOException; + + void rechargeCallback(PaymentResponse vo, HttpServletResponse response) throws IOException; } -- Gitblit v1.9.3