Your Name
2023-07-05 4ed693f48d1435de7a6333df17c2b34154731429
springboot/src/main/java/com/java110/boot/controller/app/payment/chinaums/ChinaUmsNotifyPaymentController.java
@@ -35,8 +35,8 @@
     * @param request
     * @throws Exception
     */
    @RequestMapping(path = "/chinaums/{appId}", method = RequestMethod.POST)
    public ResponseEntity<String> notify( @PathVariable String appId, HttpServletRequest request) {
    @RequestMapping(path = "/chinaums/{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));
    }