|
@@ -95,7 +95,7 @@ public class YsPayCallBackController {
|
|
private IChannelWithdrawService channelWithdrawService;
|
|
private IChannelWithdrawService channelWithdrawService;
|
|
|
|
|
|
|
|
|
|
- @RequestMapping(value = "/ysCallback", method = RequestMethod.GET)
|
|
|
|
|
|
+ @RequestMapping(value = "/ysCallback", method = RequestMethod.POST)
|
|
public void payCallback(HttpServletRequest request, HttpServletResponse response) throws Exception {
|
|
public void payCallback(HttpServletRequest request, HttpServletResponse response) throws Exception {
|
|
Map<String, String[]> reqParams = request.getParameterMap();
|
|
Map<String, String[]> reqParams = request.getParameterMap();
|
|
|
|
|
|
@@ -251,7 +251,7 @@ public class YsPayCallBackController {
|
|
* @param response
|
|
* @param response
|
|
* @throws Exception
|
|
* @throws Exception
|
|
*/
|
|
*/
|
|
- @RequestMapping(value = "/ysDivCallback", method = RequestMethod.GET)
|
|
|
|
|
|
+ @RequestMapping(value = "/ysDivCallback", method = RequestMethod.POST)
|
|
public void divCallback(HttpServletRequest request, HttpServletResponse response) {
|
|
public void divCallback(HttpServletRequest request, HttpServletResponse response) {
|
|
Map<String, String[]> reqParams = request.getParameterMap();
|
|
Map<String, String[]> reqParams = request.getParameterMap();
|
|
|
|
|
|
@@ -301,7 +301,7 @@ public class YsPayCallBackController {
|
|
* @param request
|
|
* @param request
|
|
* @param response
|
|
* @param response
|
|
*/
|
|
*/
|
|
- @RequestMapping(value = "/ysWithdrawCallback", method = RequestMethod.GET)
|
|
|
|
|
|
+ @RequestMapping(value = "/ysWithdrawCallback", method = RequestMethod.POST)
|
|
public void withdrawCallback(HttpServletRequest request, HttpServletResponse response) {
|
|
public void withdrawCallback(HttpServletRequest request, HttpServletResponse response) {
|
|
Map<String, String[]> reqParams = request.getParameterMap();
|
|
Map<String, String[]> reqParams = request.getParameterMap();
|
|
|
|
|