From 5fe1243b526deffe146761a19dece3ede4fa603d Mon Sep 17 00:00:00 2001 From: fengjin <1435304038@qq.com> Date: 星期三, 23 十一月 2022 15:09:19 +0800 Subject: [PATCH] 修改回显Bug --- flower_city/src/main/java/com/dg/core/controller/HomeStatisticsController.java | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/flower_city/src/main/java/com/dg/core/controller/HomeStatisticsController.java b/flower_city/src/main/java/com/dg/core/controller/HomeStatisticsController.java index 0f1da23..a1a61b8 100644 --- a/flower_city/src/main/java/com/dg/core/controller/HomeStatisticsController.java +++ b/flower_city/src/main/java/com/dg/core/controller/HomeStatisticsController.java @@ -595,7 +595,7 @@ } - @ApiOperation("部门数据导办人员排行榜 type 1 安评价 2 按办结量 3 按超时 4按工单量 5 按未办结量") + @ApiOperation("部门数据导办人员排行榜 type 1 安评价 2按工单量 3按办结量 4 按未办结量 5 按超时") @GetMapping("/department/getGuidePlate") public TableDataInfo<GuidePlate> getDepartmentGuidePlate(@RequestParam("type") String type,@RequestParam("ids") List<String> ids) { @@ -613,23 +613,23 @@ } else if(StringUtils.equals("2",type)) { - //2 按办结量 - return getDataTable(homeStatisticsService.guidePlatePeople(ids),allNum); + //2按工单量 + return getDataTable(homeStatisticsService.workunit(ids),allNum); } else if(StringUtils.equals("3",type)) { - //3 按超时 - return getDataTable(homeStatisticsService.timeout(ids),allNum); + //3 按办结量 + return getDataTable(homeStatisticsService.guidePlatePeople(ids),allNum); } else if(StringUtils.equals("4",type)) { - //按工单量 - return getDataTable(homeStatisticsService.workunit(ids),allNum); + //4按未办结量 + return getDataTable(homeStatisticsService.tosettled(ids),allNum); } else { - //按未办结量 - return getDataTable(homeStatisticsService.tosettled(ids),allNum); + //5 按超时 + return getDataTable(homeStatisticsService.timeout(ids),allNum); } } -- Gitblit v1.7.1