generated from root/miduo_server
增加02703渠道
parent
0c5cd257fe
commit
8773f2b348
|
@ -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;
|
||||
|
||||
/**
|
||||
* 太初行027三包支付
|
||||
*/
|
||||
@RestController
|
||||
public class Hb027Tcx3RechargeController{
|
||||
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(Hb027RechargeController.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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue