| | |
| | | R listVillage(ComMngVillageVO comMngVillageVO); |
| | | |
| | | /** |
| | | * 根据房屋id查询实有房屋 |
| | | * |
| | | * @param villageId 查询条件 |
| | | * @return 查询结果 |
| | | */ |
| | | @PostMapping("/getVillageById") |
| | | R getVillageById(@RequestParam(value = "villageId")Long villageId); |
| | | |
| | | /** |
| | | * 批量导入实有房屋 |
| | | * |
| | | * @param list 实有房屋数据 |
| | |
| | | */ |
| | | @PostMapping("/common/data/population/getList") |
| | | R getPopulationLists(@RequestBody List<Long> Ids); |
| | | |
| | | /** |
| | | * 根据小区id查询实有人口 |
| | | * |
| | | * @param villageId 小区id |
| | | * @return 查询结果 |
| | | */ |
| | | @PostMapping("/common/data/population/getListByVillageId") |
| | | R getPopulationListByVillageId(@RequestParam("villageId") Long villageId); |
| | | |
| | | /** |
| | | * 创建调查问卷 |
| | |
| | | * @return 详情 |
| | | */ |
| | | @GetMapping("/detailworkguide") |
| | | R detailWorkGuide(@RequestParam("workGuideId") Long workGuideId); |
| | | R detailWorkGuide(@RequestParam("workGuideId") Long workGuideId, @RequestParam("conmunityId") Long conmunityId); |
| | | |
| | | /** |
| | | * 办事指南_分页 |