| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/car/export") |
| | | public R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO){ |
| | | public R exportRealCar(@RequestBody ExportComMngCarExcelDTO exportComMngCarExcelDTO){ |
| | | return comMngCarService.exportRealCar(exportComMngCarExcelDTO); |
| | | } |
| | | |
| | |
| | | @PostMapping("/company/page") |
| | | public R pageQueryComMngRealCompany(@RequestBody PageComMngRealCompanyDTO pageComMngRealCompanyDTO) { |
| | | return comMngRealCompanyService.pageQueryComMngRealCompany(pageComMngRealCompanyDTO); |
| | | } |
| | | |
| | | /** |
| | | * 社区后台实有单位统计 |
| | | * |
| | | * @param communityId 社区id |
| | | * @return 统计结果 |
| | | */ |
| | | @PostMapping("/company/statistics") |
| | | public R getComMngRealCompanyTotalByAdmin(@RequestParam("communityId") Long communityId){ |
| | | return comMngRealCompanyService.getComMngRealCompanyTotalByAdmin(communityId); |
| | | } |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | /** |
| | | * 根据小区id查询实有人口 |
| | | * |
| | | * @param villageId 小区id |
| | | * @return 查询结果 |
| | | */ |
| | | @PostMapping("/population/getListByVillageId") |
| | | R getPopulationListByVillageId(@RequestParam(value = "villageId") Long villageId){ |
| | | return comMngPopulationService.getPopulationListByVillageId(villageId); |
| | | } |
| | | |
| | | /** |
| | | * 编辑实有人口 |
| | | * |
| | | * @param populationEditDTO |