| | |
| | | * @return |
| | | */ |
| | | @GetMapping("/area/all") |
| | | R getCityTreeByProvinceCode(@RequestParam(value = "provinceAdcode") Integer provinceAdcode) { |
| | | return comMngProvinceService.getCityTreeByProvinceCode(provinceAdcode); |
| | | public R getCityTreeByProvinceCode(@RequestParam(value = "provinceAdcode") Integer provinceAdcode, |
| | | @RequestParam(value = "areaCode", required = false) String areaCode) { |
| | | return comMngProvinceService.getCityTreeByProvinceCode(provinceAdcode, areaCode); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取省下的所有区域 tree结构 基层公开用 |
| | | * |
| | | * @param provinceAdcode |
| | | * @return |
| | | */ |
| | | @GetMapping("/area/basiclevel") |
| | | public R getCityTreeByCode(@RequestParam(value = "provinceAdcode") Integer provinceAdcode, |
| | | @RequestParam(value = "areaCode", required = false) String areaCode, |
| | | @RequestParam(value = "appId", required = false) String appId) { |
| | | return comMngProvinceService.getCityTreeByCode(provinceAdcode, areaCode,appId); |
| | | } |
| | | |
| | | /** |
| | |
| | | public R pagePopulation(@RequestBody ComMngPopulationDTO comMngPopulationVO) { |
| | | return comMngPopulationService.pagePopulation(comMngPopulationVO); |
| | | } |
| | | /** |
| | | * 社区后台老人导出管理列表 |
| | | * |
| | | * @param comMngPopulationVO |
| | | * 查询参数 |
| | | * @return 实有人口分页查询结果 |
| | | */ |
| | | @PostMapping("/population/exportOld") |
| | | public R exportOld(@RequestBody ComMngPopulationDTO comMngPopulationVO) { |
| | | return comMngPopulationService.exportOld(comMngPopulationVO); |
| | | } |
| | | |
| | | /** |
| | | * 根据身份证查询实有人口信息 |