增加太初行专服6渠道

master
DESKTOP-C3M45P4\dengdan 2024-11-07 23:12:27 +08:00
parent 3e9f651ca9
commit 17ed52905e
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package com.jmfy.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
/**
* 0276
*/
@RestController
public class Hb027Tcx6RechargeController{
private static final Logger LOGGER = LoggerFactory.getLogger(Hb027Tcx6RechargeController.class);
private static final String appId = "7ea1f76894b5305cc3e476c8543e0e41";
private static final String appKey = "e401272c5f5e62d1a146c5bcda75f28f";
private static final String serverKey = "4944b72022f486189cc6e5afecc7775a";
@RequestMapping(value = "/Hb027Tcx6Callback")
public String Hb027tcx6Callback(HttpServletRequest request) throws Exception {
return Hb027RechargeController.process(request,appId,appKey,serverKey);
}
}