From 3596cbaabc93f39dcb46ed1ba9523f54a4081e1e Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期三, 16 六月 2021 18:25:49 +0800 Subject: [PATCH] 修改随手拍处理状态问题 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java | 33 +++++++++++++++++++++++++++++++-- 1 files changed, 31 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java index 1cf3267..9067366 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java @@ -1,6 +1,7 @@ package com.panzhihua.service_community.service; import com.panzhihua.common.model.dtos.community.ComMngPopulationDTO; +import com.panzhihua.common.model.dtos.community.ComMngPopulationEditDTO; import com.panzhihua.common.model.dtos.community.ComMngPopulationTagDTO; import com.panzhihua.common.model.dtos.user.PageInputUserDTO; import com.panzhihua.common.model.vos.R; @@ -103,11 +104,11 @@ /** * 编辑实有人口 - * @param editComMngPopulationVO + * @param populationEditDTO * @param communityId * @return */ - R editPopulation(EditComMngPopulationVO editComMngPopulationVO, Long communityId); + R editPopulation(ComMngPopulationEditDTO populationEditDTO, Long communityId) throws Exception; /** * 分页查询特殊群体 @@ -136,4 +137,32 @@ * @return */ R editUserElectronicFile(UserElectronicFileVO userElectronicFileVO); + + /** + * 实有人口统计 + * @param communityId 社区id + * @return 统计结果 + */ + R getPopulationTotalByAdmin(Long communityId); + + /** + * 首页大屏统计接口 + * @param communityId 社区id + * @return 统计结果 + */ + R getScreenIndex(Long communityId); + + /** + * 事件大屏统计接口 + * @param communityId 社区id + * @return 统计结果 + */ + R getScreenEvent(Long communityId); + + /** + * 民生大屏统计接口 + * @param communityId 社区id + * @return 统计结果 + */ + R getScreenCivil(Long communityId); } -- Gitblit v1.7.1