| | |
| | | package com.panzhihua.common.service.grid; |
| | | |
| | | import com.panzhihua.common.model.dtos.IdDTO; |
| | | 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.dtos.grid.admin.EventGridMemberCascadeAddDTO; |
| | |
| | | */ |
| | | @PostMapping("/map/getMapGridListsByApp") |
| | | R getMapGridListsByApp(@RequestBody EventGridCascadeListDTO cascadeListDTO); |
| | | |
| | | /** |
| | | * 首页查询网格级联列表2 |
| | | * @param userId 用户id |
| | | * @return 网格列表 |
| | | */ |
| | | @PostMapping("/map/getMapGridsListsByApp") |
| | | R getMapGridsListsByApp(@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 绘制多边形统计数据 |
| | | * @param eventListDTO 请求参数 |
| | | * @return 统计数据 |
| | | */ |
| | | @PostMapping("/screen/getCivilDrawList") |
| | | R getCivilDrawList(@RequestBody ScreenDrawEventListDTO eventListDTO); |
| | | |
| | | /** |
| | | * 大屏-根据小区id查询小区统计人数 |
| | | * @param villageId 小区id |
| | | * @return 小区统计数据 |
| | | */ |
| | | @GetMapping("/screen/village/statistics") |
| | | R civilVillageStatistics(@RequestParam("villageId") Long villageId); |
| | | } |