generated from root/miduo_server
增加太初行专服6渠道
parent
3e9f651ca9
commit
17ed52905e
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue