| | |
| | | return eventService.getNearByGrid(pageEventGridNearbyDTO); |
| | | } |
| | | |
| | | /** |
| | | * 直接上报社区 |
| | | * @param commonEventDirectReportDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/reportDirect") |
| | | R reportDirect(@RequestBody CommonEventDirectReportDTO commonEventDirectReportDTO){ |
| | | return eventService.reportDirect(commonEventDirectReportDTO); |
| | | } |
| | | /** |
| | | * 特殊人群上报-社区人口数据列表 |
| | | * @param specialPopulationDTO 请求参数 |
| | | * @return 社区人口数据列表 |
| | | */ |
| | | @PostMapping("/special/population/list") |
| | | public R specialPopulationList(@RequestBody PageEventSpecialPopulationDTO specialPopulationDTO){ |
| | | return eventService.specialPopulationList(specialPopulationDTO); |
| | | } |
| | | } |