From 86df207c37502cce1b2043e1c7c0486459eef1d6 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期四, 13 三月 2025 19:58:45 +0800 Subject: [PATCH] 党员、诉求评论基础代码 --- flower_city/src/main/java/com/dg/core/db/gen/mapper/HomeStatisticsMapper.java | 33 ++++++++++++++++++++++++--------- 1 files changed, 24 insertions(+), 9 deletions(-) diff --git a/flower_city/src/main/java/com/dg/core/db/gen/mapper/HomeStatisticsMapper.java b/flower_city/src/main/java/com/dg/core/db/gen/mapper/HomeStatisticsMapper.java index c1b311b..d8305a5 100644 --- a/flower_city/src/main/java/com/dg/core/db/gen/mapper/HomeStatisticsMapper.java +++ b/flower_city/src/main/java/com/dg/core/db/gen/mapper/HomeStatisticsMapper.java @@ -15,31 +15,45 @@ * 按办结量排序 * @return */ - List<GuidePlate> guidePlatePeople(); + List<GuidePlate> guidePlatePeople(List<String> ids); /** *按评分排序 * @return */ - List<GuidePlate> score(); + List<GuidePlate> score(List<String> ids); /** * 按超时 * @return */ - List<GuidePlate> timeout(); + List<GuidePlate> timeout(List<String> ids); + + /** + * 按未办结 + * @param ids + * @return + */ + List<GuidePlate> tosettled(List<String> ids); + + /** + * 按工单量 + * @param ids + * @return + */ + List<GuidePlate> workunit(List<String> ids); /** * 导办人员统计数 * @return */ - Integer staffNum(); + Integer staffNum(List<String> ids); /** * 办事指南数量统计 * @return */ - Integer countWork(); + Integer countWork(List<String> ids); /** * 获取一级部门 @@ -63,18 +77,19 @@ * 办事指南根据导办数量排序 * @return */ - List<Guidance> guidanceTransaction(); + List<Guidance> guidanceTransaction(List<String> ids); /** * 办事指南根据浏览数量排序 * @return */ - List<Guidance> guidanceBrowse(); + List<Guidance> guidanceBrowse(List<String> ids); /** * 获取统计数据 首页用 勿动 */ - int countStatisticsNum(List<String> classifyIds); + int countStatisticsNum(@Param("classifyIds") List<String> classifyIds, + @Param("ids") List<String> ids); /** @@ -97,7 +112,7 @@ * 首页统计用 * @return */ - int reversionRate(@Param("state") String state,@Param("isTimeout") String isTimeout); + String reversionRate(@Param("state") String state,@Param("isTimeout") String isTimeout); } -- Gitblit v1.7.1