| | |
| | | R<EventGridMemberGpsLogDetailsVO> eventGridMemberGpsLogDetails(@PathVariable("id") Long id); |
| | | |
| | | /** |
| | | * 添加突发事件 |
| | | * @param emergenciesEventAddDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/addEmergencies") |
| | | R addEmergencies(@RequestBody EmergenciesEventAddDTO emergenciesEventAddDTO); |
| | | |
| | | /** |
| | | * 保存突发事件草稿 |
| | | * @param emergenciesEventEditDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/saveEmergenciesDraft") |
| | | R saveEmergenciesDraft(@RequestBody EmergenciesEventEditDTO emergenciesEventEditDTO); |
| | | |
| | | /** |
| | | * 突发事件上报社区 |
| | | * @param emergenciesEventReportDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/emergenciesReport") |
| | | R emergenciesReport(@RequestBody EmergenciesEventReportDTO emergenciesEventReportDTO); |
| | | |
| | | /** |
| | | * 突发事件撤销 |
| | | * @param eventRevokeDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/emergenciesRevoke") |
| | | R emergenciesRevoke(@RequestBody EventRevokeDTO eventRevokeDTO); |
| | | |
| | | /** |
| | | * 查询用户网格 |
| | | * @param pageEventGridDataDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/eventgriddata/userGrid") |
| | | R userGrid(@RequestBody PageEventGridDataDTO pageEventGridDataDTO); |
| | | |
| | | /** |
| | | * 处理事件 |
| | | * @param eventDealDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/dealEvent") |
| | | R dealEvent(@RequestBody EventDealDTO eventDealDTO); |
| | | |
| | | /** |
| | | * 处理事件 |
| | | * @param eventVerifyDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/verify") |
| | | R verifyEvent(@RequestBody EventVerifyDTO eventVerifyDTO); |
| | | |
| | | /** |
| | | * 处理事件 |
| | | * @param eventRepublicDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/republish") |
| | | R republishEvent(@RequestBody EventRepublicDTO eventRepublicDTO); |
| | | |
| | | /** |
| | | * 查询随手拍列表 |
| | | * @param easyAppDTO 请求参数 |
| | | * @return 随手拍列表 |
| | | */ |
| | | @PostMapping("/easy/list") |
| | | R easyList(@RequestBody PageEasyAppDTO easyAppDTO); |
| | | |
| | | /** |
| | | * 查询随手拍详情 |
| | | * @param easyId 随手拍id |
| | | * @return 随手拍详情 |
| | | */ |
| | | @PostMapping("/easy/detail") |
| | | R easyDetailByApp(@RequestParam("easyId") Long easyId); |
| | | |
| | | /** |
| | | * 查询随手拍类型列表 |
| | | * @return 类型列表 |
| | | */ |
| | | @PostMapping("/easy/type/list") |
| | | R easyTypeListByApp(); |
| | | |
| | | /** |
| | | * 随手拍处理 |
| | | * @param photoHandleDTO 请求参数 |
| | | * @return 处理结果 |
| | | */ |
| | | @PostMapping("/easy/handle") |
| | | R easyHandle(@RequestBody ComActEasyPhotoHandleDTO photoHandleDTO); |
| | | |
| | | /** |
| | | * 随手拍公示状态切换 |
| | | * @param photoHandleDTO 请求参数 |
| | | * @return 切换结果 |
| | | */ |
| | | @PostMapping("/easy/publicity") |
| | | R easyPublicity(@RequestBody ComActEasyPhotoHandleDTO photoHandleDTO); |
| | | |
| | | /** |
| | | * 随手拍上报社区 |
| | | * @param photoHandleDTO 请求参数 |
| | | * @return 上报结果 |
| | | */ |
| | | @PostMapping("/easy/report") |
| | | R easyReport(@RequestBody ComActEasyPhotoHandleDTO photoHandleDTO); |
| | | |
| | | /** |
| | | * 地图模块-根据网格id查询网格详细信息 |
| | | * @param gridId 网格id |
| | | * @return 网格详细信息 |
| | | */ |
| | | @PostMapping("/map/getGridDetail") |
| | | R getGridDetail(@RequestParam("gridId") Long gridId); |
| | | |
| | | /** |
| | | * 地图模块-根据网格员id查询今日运动轨迹 |
| | | * @param userId 网格员id |
| | | * @return 运动轨迹 |
| | | */ |
| | | @PostMapping("/map/getTrajectoryByApp") |
| | | R getTrajectoryByApp(@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 地图模块-根据网格员id查询关联网格列表 |
| | | * @param userId 网格员id |
| | | * @return 网格列表 |
| | | */ |
| | | @PostMapping("/map/getMapGridListByApp") |
| | | R getMapGridListByApp(@RequestParam("userId") Long userId); |
| | | } |