Your Name
2023-07-03 2b919980a8c70554a64cb3d03cc95679af4d817f
service-api/src/main/java/com/java110/api/controller/app/payment/icbc/IcbcNotifyPaymentController.java
@@ -35,8 +35,8 @@
     * @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));
@@ -55,7 +55,7 @@
//        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));
    }