From aac1b0c11292a68d8a079013757ed828e17290b5 Mon Sep 17 00:00:00 2001 From: "DESKTOP-C3M45P4\\dengdan" Date: Sun, 19 Oct 2025 21:15:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=A5=BF=E6=B8=B8tap?= =?UTF-8?q?=E6=B8=A0=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../QuickXyTapRechargeController.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/main/java/com/jmfy/controller/QuickXyTapRechargeController.java diff --git a/src/main/java/com/jmfy/controller/QuickXyTapRechargeController.java b/src/main/java/com/jmfy/controller/QuickXyTapRechargeController.java new file mode 100644 index 0000000..87be29c --- /dev/null +++ b/src/main/java/com/jmfy/controller/QuickXyTapRechargeController.java @@ -0,0 +1,20 @@ +package com.jmfy.controller; + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import javax.servlet.http.HttpServletRequest; + +/** + * 西游tap + */ +@RestController +public class QuickXyTapRechargeController { + private static final String callbackkey = "56978364442802045754701047557102"; + private static final String md5key = "qz5ilm8mcmaebficoggblneoaljmwmem"; + + @RequestMapping(value = "/quickXyTapCallback") + public String QuickCallback(HttpServletRequest request) throws Exception { + return QuickRechargeController.process(request,callbackkey,md5key); + } +}