From f8466a8905261edc14c3d8015748a9a617d8fe3c Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期三, 28 七月 2021 11:10:13 +0800 Subject: [PATCH] 修改综治后台关联市平台网格员以及网格接口 --- springcloud_k8s_panzhihuazhihuishequ/service_grid/src/main/java/com/panzhihua/service_grid/service/EventService.java | 33 ++++++++++++++++++++++++++++++++- 1 files changed, 32 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_grid/src/main/java/com/panzhihua/service_grid/service/EventService.java b/springcloud_k8s_panzhihuazhihuishequ/service_grid/src/main/java/com/panzhihua/service_grid/service/EventService.java index b5fbcf3..3e5592a 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_grid/src/main/java/com/panzhihua/service_grid/service/EventService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_grid/src/main/java/com/panzhihua/service_grid/service/EventService.java @@ -2,6 +2,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; +import com.panzhihua.common.model.dtos.community.bigscreen.event.ScreenDrawEventListDTO; import com.panzhihua.common.model.dtos.community.bigscreen.event.ScreenEventListDTO; import com.panzhihua.common.model.dtos.grid.*; import com.panzhihua.common.model.vos.R; @@ -228,7 +229,7 @@ * @param gridId 网格id * @return 网格统计数据 */ - R getGridEventStatisticsByApp(Long gridId); + R getGridEventStatisticsByApp(Long gridId,Long userId); /** * 查询网格事件统计数据 @@ -250,6 +251,13 @@ * @return 事件列表 */ R getScreenEventList(ScreenEventListDTO eventListDTO); + + /** + * 特殊人群上报-社区人口数据列表 + * @param specialPopulationDTO 请求参数 + * @return 社区人口数据列表 + */ + R specialPopulationList(PageEventSpecialPopulationDTO specialPopulationDTO); /** * description 获取所有未上传到浪潮平台的事件列表 * @@ -266,4 +274,27 @@ * @date 2021/6/10 17:00 */ Boolean updateLcUploadFlag(Long id); + + R eventWork(Long communityId); + + /** + * 绘制多边形统计数据 + * @param eventListDTO 请求参数 + * @return 统计数据 + */ + R getCivilDrawList(ScreenDrawEventListDTO eventListDTO); + + /** + * 大屏-根据小区id查询小区统计人数 + * @param villageId 小区id + * @return 小区统计数据 + */ + R civilVillageStatistics(Long villageId); + + /** + * 查询所有网格员工作汇总数据 + * @param statisticsAdminDTO 请求参数 + * @return 网格员工作汇总数据 + */ + R gridMemberStatisticsAll(MemberStatisticsAdminDTO statisticsAdminDTO); } -- Gitblit v1.7.1