Commit e90b5c5b499860fdf1a7e33bbdd763e1825db7aa

Authored by litao
1 parent 591c5918aa

修复

Showing 1 changed file with 1 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java View file @ e90b5c5
... ... @@ -426,12 +426,11 @@
426 426 map.put("city_name", findName(map.get("city_id")));
427 427 map.put("area_name", findName(map.get("area_id")));
428 428 }
429   - return RespBuilder.buildSuccess("couponReport", couponReport, "couponReportMap", couponReportMap);
430 429 } else{
431 430 return RespBuilder.buildErro(ResponseCode.DATA_ERROR);
432 431 }
433 432 }
434   - return RespBuilder.buildSuccess();
  433 + return RespBuilder.buildSuccess("couponReport", couponReport, "couponReportMap", couponReportMap);
435 434 }
436 435  
437 436 @Override