From f4925db559734b543a1d3fdb0dea8da3b395b4a9 Mon Sep 17 00:00:00 2001 From: CeDo <cedoogle@gmail.com> Date: 星期一, 07 六月 2021 19:46:50 +0800 Subject: [PATCH] bugfixed --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 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 834f913..2e8c650 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 @@ -823,6 +823,38 @@ 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 网格统计数据 @@ -837,4 +869,20 @@ */ @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); } -- Gitblit v1.7.1