From 195a69db2246ebefc9267b95cad7468949654a22 Mon Sep 17 00:00:00 2001 From: "DESKTOP-C3M45P4\\dengdan" Date: Fri, 22 Nov 2024 18:26:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=A5=BF=E6=B8=B8=E8=BF=94?= =?UTF-8?q?=E5=88=A9=E6=B8=A0=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../QuickXyFanli01RechargeController.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/main/java/com/jmfy/controller/QuickXyFanli01RechargeController.java diff --git a/src/main/java/com/jmfy/controller/QuickXyFanli01RechargeController.java b/src/main/java/com/jmfy/controller/QuickXyFanli01RechargeController.java new file mode 100644 index 0000000..11d2db8 --- /dev/null +++ b/src/main/java/com/jmfy/controller/QuickXyFanli01RechargeController.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; + +/** + * 西游直播返利1 + */ +@RestController +public class QuickXyFanli01RechargeController { + private static final String callbackkey = "43916418632129783417430664380475"; + private static final String md5key = "lecr7mkl7zrpxefv5qhxki9pbtffvzlh"; + + @RequestMapping(value = "/xyFanli01Callback") + public String QuickCallback(HttpServletRequest request) throws Exception { + return QuickRechargeController.process(request,callbackkey,md5key); + } +}