From fc56ad34e7110c2da5d81459bf9ad37f98988b04 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期三, 19 十月 2022 16:39:27 +0800 Subject: [PATCH] 修改角色创建人问题 导办人员筛选 bug --- flower_city/src/main/java/com/dg/core/controller/HomeStatisticsController.java | 53 +++++++++++++++++++++++++++++++++++++++-------------- 1 files changed, 39 insertions(+), 14 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 50251a8..b0b27f5 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 @@ -2,6 +2,7 @@ import com.dg.core.ResultData; import com.dg.core.db.gen.entity.*; +import com.dg.core.db.manual.pojo.AppletUserCount; import com.dg.core.service.*; import com.dg.core.util.TableDataInfo; import io.swagger.annotations.Api; @@ -44,10 +45,13 @@ @Autowired IAreaCodeService iAreaCodeService; + @Autowired + private ISysUserRecordService iSysUserRecordService; + @ApiOperation("首页统计不同状态工单数") @GetMapping("/getWorkOrder") - public ResultData getWorkOrder() + public ResultData<WorkOrder> getWorkOrder() { WorkOrder workOrder=new WorkOrder(); //状态(1待分配 2 待办结 3 已办结 4 待评价 5 已取消 6未解决 7已解决) @@ -70,7 +74,7 @@ @ApiOperation("首页统计不同时间段的工单数量") @GetMapping("/getTimeWorkOrder") - public ResultData getTimeWorkOrder() + public ResultData<TimeWorkOrder> getTimeWorkOrder() { //1 今天 2昨天 3本月 4本年度 //累计全部 本年 本月 今日 昨日 @@ -86,7 +90,7 @@ @ApiOperation("根据选择的时间段 筛选导办工单数 timeType:1 本年度 15 近15天的 30 近30天的") @GetMapping("/getSelectionTimeOrder") - public ResultData getSelectionTimeOrder(@RequestParam("timeType") Integer timeType) + public ResultData<CountList> getSelectionTimeOrder(@RequestParam("timeType") Integer timeType) { if(timeType<1) { @@ -112,7 +116,7 @@ @ApiOperation("获取效率比值") @GetMapping("/getEfficiency") - public ResultData getEfficiency() + public ResultData<EfficiencyEntity> getEfficiency() { EfficiencyEntity entity=new EfficiencyEntity(); //总工单数 @@ -125,19 +129,19 @@ { // 好评率=评价为满意的导办工单数量/已办结状态工单数量 String goodReputationEfficiency=weekDf.format((float)(iGuideRepairOrderService.countStatisticsNum(null,null,null,null,"1",null) - /bj)); + /(float)bj)); entity.setGoodReputationEfficiency(goodReputationEfficiency); // 解决率=已解决状态的导办工单数量/已办结状态工单数量 String resolveEfficiency=weekDf.format((float)(iGuideRepairOrderService.countStatisticsNum("7",null,null,null,null,null) - /bj)); + /(float)bj)); entity.setResolveEfficiency(resolveEfficiency); if(allNum!=0) { // 办结率=待评价+已办结状态的导办工单数量/总工单数量 String workEfficiency=weekDf.format((float)((iGuideRepairOrderService.countStatisticsNum("4",null,null,null,null,null) - +bj)/allNum)); + +bj)/(float)allNum)); entity.setWorkEfficiency(workEfficiency); } } @@ -148,7 +152,7 @@ // 超时办结率=超时状态下的待评价+已办结状态的导办工单数量/超时状态的导办工单数量 String timeoutEfficiency=weekDf.format((float)((iGuideRepairOrderService.countStatisticsNum("4",null,null,"2",null,null) +iGuideRepairOrderService.countStatisticsNum("3",null,null,null,null,null)) - /cs)); + /(float)cs)); entity.setTimeoutEfficiency(timeoutEfficiency); } @@ -157,7 +161,7 @@ { // 回复率=最新进展里0条回复的导办工单数量/总工单数量 //状态(1待分配 2 待办结 3 已办结 4 待评价 5 已取消 6未解决 7已解决 8 系统自动分配 9 回复 10转派 11手动分配) - String reversionRate=weekDf.format((float)(iGuideEvolveService.countStatisticsNum("9",null)/allNum)); + String reversionRate=weekDf.format((float)(iGuideEvolveService.countStatisticsNum("9",null)/(float)allNum)); entity.setReversionRate(reversionRate); } @@ -166,7 +170,7 @@ @ApiOperation("工单 办事指南饼状图数据") @GetMapping("/getPieChart") - public ResultData getPieChart() + public ResultData<PieChartAll> getPieChart() { PieChartAll pieChartAll=new PieChartAll(); pieChartAll.setWorkOrderNum(iGuideRepairOrderService.countStatisticsNum("",null,null,null,null,null)+""); @@ -214,7 +218,7 @@ @ApiOperation("组织排行榜 type 1 安评价 2 按办结量") @GetMapping("/getOrganization") - public TableDataInfo getOrganization(@RequestParam("type") String type) + public TableDataInfo<OrganizationEntity> getOrganization(@RequestParam("type") String type) { List<OrganizationEntity> guidePlates=homeStatisticsService.getDepartment(); @@ -281,7 +285,7 @@ @ApiOperation("导办人员排行榜 type 1 安评价 2 按办结量 3 按超时") @GetMapping("/getGuidePlate") - public TableDataInfo getGuidePlate(@RequestParam("type") String type) + public TableDataInfo<GuidePlate> getGuidePlate(@RequestParam("type") String type) { int allNum=homeStatisticsService.staffNum(); @@ -305,7 +309,7 @@ @ApiOperation("办事指南排行榜 type 1 按浏览量 2 按办结量") @GetMapping("/getGuidance") - public TableDataInfo getGuidance(@RequestParam("type") String type) + public TableDataInfo<Guidance> getGuidance(@RequestParam("type") String type) { int allNum=homeStatisticsService.countWork(); if(StringUtils.equals("1",type)) @@ -323,7 +327,7 @@ @ApiOperation("导办工单按区域统计") @GetMapping("/getRangeStatistics") - public TableDataInfo getRangeStatistics() + public TableDataInfo<RangeStatistics> getRangeStatistics() { List<AreaCode2022> code2022s=iAreaCodeService.getListByPCode("510400000000"); @@ -358,6 +362,27 @@ } + /** + * 小程序用户访问量统计1.累计访问量2.本年访问量 3.本月访问量 4.今日访问量 5.昨日访问 + * @return + */ + @ApiOperation(value = "小程序用户访问量统计1.累计访问量2.本年访问量 3.本月访问量 4.今日访问量 5.昨日访问",response = AppletUserCount.class) + @GetMapping("/selectUserRecordCount") + public ResultData selectUserRecordCount(){ + return iSysUserRecordService.selectUserRecordCount(); + } + + /** + * 小程序用户访问量统计1.近15天 2.近30天 3.近一年 + * @return + */ + @ApiOperation(value = "小程序用户访问量统计1.近15天 2.近30天 3.近一年",response = AppletUserCount.class) + @GetMapping("/selectByDateType") + public ResultData selectByDateType(@RequestParam("dateType") Integer dateType){ + return iSysUserRecordService.selectByDateType(dateType); + } + + -- Gitblit v1.7.1