diff --git a/src/main/java/com/jmfy/controller/QuickTcxZb2RechargeController.java b/src/main/java/com/jmfy/controller/QuickTcxZb2RechargeController.java new file mode 100644 index 0000000..c82e789 --- /dev/null +++ b/src/main/java/com/jmfy/controller/QuickTcxZb2RechargeController.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; + +/** + * 太初行直播2 + */ +@RestController +public class QuickTcxZb2RechargeController { + private static final String callbackkey = "42046603295849957471088750401985"; + private static final String md5key = "8u1ox7ck5lxzhu5pvowxhkffn9lv3a1c"; + + @RequestMapping(value = "/quickTcxZb2Callback") + public String QuickCallback(HttpServletRequest request) throws Exception { + return QuickRechargeController.process(request,callbackkey,md5key); + } +}