java110
2023-04-13 b1dfbfeb3ed175863df2c06b20778842821dd425
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));
    }