|
|
@@ -146,10 +146,14 @@ public class CallbackPayController extends BaseController { |
|
|
|
@AuthIgnore |
|
|
|
@ApiOperation("支付回调") |
|
|
|
@PostMapping(value = "/aliNotify") |
|
|
|
public Map<String,Object> _aliNotify(@RequestParam Map<String, Object> paranMap) { |
|
|
|
public Map<String,Object> _aliNotify(HttpServletRequest request, HttpServletResponse response) { |
|
|
|
logger.debug("[" + getIpAddr() + "] CallbackPayController::_aliNotify"); |
|
|
|
|
|
|
|
String notify_id = request.getParameter("notify_id"); |
|
|
|
String app_id = request.getParameter("app_id"); |
|
|
|
String biz_content = request.getParameter("biz_content"); |
|
|
|
logger.info("ali支付回调结果通知{}notify_id="+notify_id+",app_id="+app_id+",biz_content="+biz_content); |
|
|
|
Map<String,Object> resultMap = new HashMap<>(); |
|
|
|
logger.info("ali支付回调结果通知{}"+JSONObject.toJSONString(paranMap)); |
|
|
|
/** |
|
|
|
* ----效验数据来源合法 |
|
|
|
*/ |
|
|
|