/**
  * 银联web通知回调(upop)
  *
  * @param request
  * @param response
  */
 @RequestMapping(value = "/unionPayNotifyWeb")
 public void unionPayNotifyWeb(HttpServletRequest request, HttpServletResponse response) {
   unionPayNotifyService.unionPayNotifyWeb(request, response);
 }
 /**
  * 银联app通知回调(acp)
  *
  * @param request
  * @param response
  * @throws IOException
  */
 @RequestMapping(value = "/unionPayNotify")
 public void unionPayNotifyApp(HttpServletRequest request, HttpServletResponse response)
     throws IOException, BusinessException {
   unionPayNotifyService.unionPayNotifyApp(request);
 }