From b057f9985a360fcfeb3aa6e96eae99deccffa1d2 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期三, 23 六月 2021 14:31:43 +0800 Subject: [PATCH] 特殊群人上报接口,获取系统配置接口 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java | 125 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 123 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java index 435b3b3..ca0e611 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java @@ -1,5 +1,6 @@ package com.panzhihua.common.service.grid; +import com.panzhihua.common.model.dtos.community.bigscreen.event.ScreenEventListDTO; import com.panzhihua.common.model.dtos.grid.*; import com.panzhihua.common.model.vos.*; import com.panzhihua.common.model.vos.grid.*; @@ -29,11 +30,11 @@ /** * 删除事件 - * @param eventDeleteDTO + * @param CommonEventDeleteDTO * @return 平台用户信息 */ @PostMapping("/event/delete") - R delete(@RequestBody EventDeleteDTO eventDeleteDTO); + R delete(@RequestBody CommonEventDeleteDTO CommonEventDeleteDTO); /** * 查询事件详细信息 @@ -624,6 +625,15 @@ R queryPublicity(@RequestBody PagePublicityEventDTO pagePublicityEventDTO); /** + * 分页查询宣传教育事件 + * @param pagePublicityEventDTO 请求参数 + * @return 结果 + */ + @PostMapping("/event/queryPublicityCommunity") + R queryPublicityCommunity(@RequestBody PagePublicityEventCommunityDTO pagePublicityEventDTO); + + + /** * 分页查询社区列表 * @return 结果 */ @@ -774,6 +784,22 @@ R easyPublicityByAdmin(@RequestBody ComActEasyPhotoEditAdminDTO photoHandleDTO); /** + * 查询网格下所有网格员 + * @param gridId + * @return + */ + @PostMapping("/eventgriddata/grid/member") + R getGridMemberListsByGrid(@RequestParam("gridId") Long gridId); + + /** + * 查询网格下所有网格员 + * @param communityId + * @return + */ + @PostMapping("/eventgriddata/communitygrid") + R getGridDataListByCommunity(@RequestParam("gridId") Long communityId); + + /** * 后台管理-统计模块 * @param communityId 社区id * @return 统计信息 @@ -788,4 +814,99 @@ */ @PostMapping("/eventgriddata/data/delete") R deleteGridData(@RequestBody List<Long> Ids); + + /** + * 后台管理-网格员统计 + * @param statisticsAdminDTO 请求参数 + * @return 网格员统计信息 + */ + @PostMapping("/statistics/admin/gridMemberStatistics") + R gridMemberStatistics(@RequestBody MemberStatisticsAdminDTO statisticsAdminDTO); + + /** + * 批量删除 + * @param eventDeleteDTO + * @return + */ + @PostMapping("/event/deleteEventBatch") + R deleteEventBatch(@RequestBody EventDeleteDTO eventDeleteDTO); + + /** + * 批量发布事件 + * @param commonEventBatchRepublishDTO + * @return + */ + @PostMapping("/event/batchRepublishEvent") + R batchRepublishEvent(@RequestBody CommonEventBatchRepublishDTO commonEventBatchRepublishDTO); + + /** + * 批量事件标为无效 + * @param eventBatchRevokeDTO + * @return + */ + @PostMapping("/event/batchMarkInvalid") + R batchMarkEventInvalid(@RequestBody EventBatchRevokeDTO eventBatchRevokeDTO); + + /** + * 批量事件标为无效 + * @param pageEventGridNearbyDTO + * @return + */ + @PostMapping("/event/grid/nearby") + R getNearByGrid(PageEventGridNearbyDTO pageEventGridNearbyDTO); + + /** + * 根据网格id查询网格统计数据 + * @param gridId 网格id + * @return 网格统计数据 + */ + @PostMapping("/statistics/getGridEventStatistics") + R getGridEventStatisticsByApp(@RequestParam("gridId") Long gridId); + + /** + * 查询网格事件统计数据 + * @param statisticsDTO 请求参数 + * @return 网格事件统计数据 + */ + @PostMapping("/statistics/event/getGridEventStatistics") + R getGridEventDetailStatisticsByApp(@RequestBody GridEventStatisticsDTO statisticsDTO); + + /** + * 网格员上报地理位置 + * @param memberPositionDTO 请求参数 + * @return 上报结果 + */ + @PostMapping("/eventgridmembergpslog/add") + R gridReportPosition(@RequestBody GridMemberPositionDTO memberPositionDTO); + + /** + * 直接上报社区 + * @param commonEventDirectReportDTO + * @return + */ + @PostMapping("/event/reportDirect") + R reportDirect(@RequestBody CommonEventDirectReportDTO commonEventDirectReportDTO); + + /** + * 定时任务扫描网格员工作状态 + * @return 定时任务扫描结果 + */ + @PostMapping("/eventgridmemberwarnlog/judge") + R timedTaskGridMember(); + + /** + * 事件大屏查询事件列表 + * @param eventListDTO 请求参数 + * @return 事件列表 + */ + @PostMapping("/screen/event/list") + R getScreenEventList(@RequestBody ScreenEventListDTO eventListDTO); + + /** + * 特殊人群上报-社区人口数据列表 + * @param specialPopulationDTO 请求参数 + * @return 社区人口数据列表 + */ + @PostMapping("/event/special/population/list") + R specialPopulationList(@RequestBody PageEventSpecialPopulationDTO specialPopulationDTO); } -- Gitblit v1.7.1