| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/car/export") |
| | | public R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO){ |
| | | public R exportRealCar(@RequestBody ExportComMngCarExcelDTO exportComMngCarExcelDTO){ |
| | | return comMngCarService.exportRealCar(exportComMngCarExcelDTO); |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | /** |
| | | * 根据小区id查询实有人口 |
| | | * |
| | | * @param villageId 小区id |
| | | * @return 查询结果 |
| | | */ |
| | | @PostMapping("/population/getListByVillageId") |
| | | R getPopulationListByVillageId(@RequestParam(value = "villageId") Long villageId){ |
| | | return comMngPopulationService.getPopulationListByVillageId(villageId); |
| | | } |
| | | |
| | | /** |
| | | * 编辑实有人口 |
| | | * |
| | | * @param populationEditDTO |