| | |
| | | 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; |
| | |
| | | * @return 网格统计数据 |
| | | */ |
| | | @PostMapping("/statistics/getGridEventStatistics") |
| | | R getGridEventStatisticsByApp(@RequestParam("gridId") Long gridId); |
| | | R getGridEventStatisticsByApp(@RequestParam("gridId") Long gridId,@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 查询网格事件统计数据 |
| | |
| | | */ |
| | | @GetMapping("/eventgriddata/lc/list") |
| | | R getLcGridLists(); |
| | | |
| | | /** |
| | | * 首页查询网格级联列表 |
| | | * @param cascadeListDTO 请求参数 |
| | | * @return 网格列表 |
| | | */ |
| | | @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); |
| | | |
| | | /** |
| | | * 查询所有网格员工作汇总数据 |
| | | * @param statisticsAdminDTO 请求参数 |
| | | * @return 网格员工作汇总数据 |
| | | */ |
| | | @PostMapping("/statistics/admin/gridMemberStatisticsAll") |
| | | R gridMemberStatisticsAll(@RequestBody MemberStatisticsAdminDTO statisticsAdminDTO); |
| | | } |