| | |
| | | * @param request |
| | | * @throws Exception |
| | | */ |
| | | @RequestMapping(path = "/icbc/{appId}", method = RequestMethod.POST) |
| | | public ResponseEntity<String> notify( @PathVariable String appId, HttpServletRequest request) { |
| | | @RequestMapping(path = "/icbc/{appId}/{communityId}", method = RequestMethod.POST) |
| | | public ResponseEntity<String> notify( @PathVariable String appId,@PathVariable String communityId, HttpServletRequest request) { |
| | | JSONObject paramIn = new JSONObject(); |
| | | for (String key : request.getParameterMap().keySet()) { |
| | | paramIn.put(key, request.getParameter(key)); |
| | |
| | | // paramIn.put("preSign", preStr); |
| | | // paramIn.put("sign", sign); |
| | | |
| | | return notifyPaymentV1InnerServiceSMOImpl.notifyPayment(new NotifyPaymentOrderDto(appId,paramIn.toJSONString())); |
| | | return notifyPaymentV1InnerServiceSMOImpl.notifyPayment(new NotifyPaymentOrderDto(appId,paramIn.toJSONString(),communityId)); |
| | | |
| | | } |
| | | |