generated from root/miduo_server
26 lines
912 B
Java
26 lines
912 B
Java
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;
|
|
|
|
/**
|
|
* 太初行027三包支付
|
|
*/
|
|
@RestController
|
|
public class Hb027Tcx3RechargeController{
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(Hb027Tcx3RechargeController.class);
|
|
private static final String appId = "cb2d23763c07dcb8fb11368a25bb74a6";
|
|
private static final String appKey = "d4864f143012f51d6b7b0192bf158b15";
|
|
private static final String serverKey = "9dfa8c5c2f440a443e84b7c132336c9b";
|
|
|
|
@RequestMapping(value = "/Hb027Tcx3Callback")
|
|
public String Hb027tcx3Callback(HttpServletRequest request) throws Exception {
|
|
return Hb027RechargeController.process(request,appId,appKey,serverKey);
|
|
}
|
|
}
|