From f8f4c8cf1602c4cd8c236fdd184baedda31e3864 Mon Sep 17 00:00:00 2001 From: "DESKTOP-C3M45P4\\dengdan" Date: Thu, 5 Mar 2026 17:30:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=A5=BF=E6=B8=B8=E5=86=B2?= =?UTF-8?q?=E7=A0=B4=E9=9A=BE=E5=85=B3=E9=95=BF=E5=B0=BE=E6=B8=A0=E9=81=93?= =?UTF-8?q?=E5=85=85=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../QuickXyChongPoCwRechargeController.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/main/java/com/jmfy/controller/QuickXyChongPoCwRechargeController.java diff --git a/src/main/java/com/jmfy/controller/QuickXyChongPoCwRechargeController.java b/src/main/java/com/jmfy/controller/QuickXyChongPoCwRechargeController.java new file mode 100644 index 0000000..25d3ce7 --- /dev/null +++ b/src/main/java/com/jmfy/controller/QuickXyChongPoCwRechargeController.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; + +/** + * 西游冲破难关长尾充值处理类 + */ +@RestController +public class QuickXyChongPoCwRechargeController { + private static final String callbackkey = "17858886125752178729106655396308"; + private static final String md5key = "9up1jdgwrfj1uqjndyjq2uvbqqz5davn"; + + @RequestMapping(value = "/quickXyChongPoCwCallback") + public String QuickCallback(HttpServletRequest request) throws Exception { + return QuickRechargeController.process(request,callbackkey,md5key); + } +}