| | |
| | | */ |
| | | package com.java110.front.controller.app; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.core.base.controller.BaseController; |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.core.context.PageData; |
| | |
| | | appId); |
| | | return toPayInGoOutSMOImpl.toPay(newPd); |
| | | } |
| | | |
| | | /** |
| | | * <p>统一下单入口</p> |
| | | * |
| | |
| | | appId); |
| | | return toPayBackCitySMOImpl.toPay(newPd); |
| | | } |
| | | |
| | | /** |
| | | * <p>统一下单入口</p> |
| | | * |
| | |
| | | logger.debug("微信支付回调报文" + postInfo); |
| | | |
| | | return toNotifySMOImpl.toNotify(postInfo, request); |
| | | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * <p>支付回调Api</p> |
| | | * |
| | | * @param request |
| | | * @throws Exception |
| | | */ |
| | | @RequestMapping(path = "/notifyChinaUms", method = RequestMethod.POST) |
| | | public ResponseEntity<String> notifyChinaUms(HttpServletRequest request) { |
| | | JSONObject paramIn = new JSONObject(); |
| | | for(String key :request.getParameterMap().keySet()){ |
| | | paramIn.put(key,request.getParameter(key)); |
| | | } |
| | | logger.debug("微信支付回调报文" + paramIn.toJSONString()); |
| | | |
| | | return toNotifySMOImpl.toNotify(paramIn.toJSONString(), request); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * <p>出租统一下单入口</p> |
| | |
| | | } |
| | | |
| | | /** |
| | | * <p>欠费银联回调</p> |
| | | * |
| | | * @param request |
| | | * @throws Exception |
| | | */ |
| | | @RequestMapping(path = "/oweFeeNotifyChinaUms", method = RequestMethod.POST) |
| | | public ResponseEntity<String> oweFeeNotifyChinaUms( HttpServletRequest request) { |
| | | JSONObject paramIn = new JSONObject(); |
| | | for(String key :request.getParameterMap().keySet()){ |
| | | paramIn.put(key,request.getParameter(key)); |
| | | } |
| | | logger.debug("微信支付回调报文" + paramIn.toJSONString()); |
| | | |
| | | return oweFeeToNotifySMOImpl.toNotify(paramIn.toJSONString(), request); |
| | | } |
| | | |
| | | /** |
| | | * <p>出租统一下单入口</p> |
| | | * |
| | | * @param request |