From 11e5c5ff34de7da51ae105b4922115ce61f96610 Mon Sep 17 00:00:00 2001 From: CeDo <cedoogle@gmail.com> Date: 星期一, 07 六月 2021 17:32:48 +0800 Subject: [PATCH] add:根据经纬度查询网格&& bugfixed --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 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 a4b0724..8b20712 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 @@ -821,4 +821,36 @@ */ @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); } -- Gitblit v1.7.1