miduo_pay/src/main/java/com/jmfy/controller/QuickDna01RechargeControlle...

21 lines
675 B
Java

package com.jmfy.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
/**
* 太初行quickdna01渠道
*/
@RestController
public class QuickDna01RechargeController {
private static final String callbackkey = "50573104931652136648590248914649";
private static final String md5key = "f0e48jt33dfetqwysmo2grijkgtkvnha";
@RequestMapping(value = "/quickDna01Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}