| | |
| | | R listSubordinatebuilding(@RequestParam("houseCode") String houseCode); |
| | | |
| | | /** |
| | | * 实有单位归属地 |
| | | * |
| | | * @param comMngRealCompanyBelongsDTO |
| | | * @return |
| | | */ |
| | | @GetMapping("/common/data/company/belongs") |
| | | R belongsComMngRealCompany(@RequestBody ComMngRealCompanyBelongsDTO comMngRealCompanyBelongsDTO); |
| | | |
| | | |
| | | /** |
| | | * 添加同级地址 |
| | | * |
| | | * @param comMngStructHouseVO 同级参数 |
| | |
| | | R listSaveMngCarExcelVO(@RequestBody List<ComMngCarExcelVO> list, @RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 分页查询实有人口 |
| | | * @param comMngPopulationVO 查询参数 |
| | | * @return 分页集合 |
| | | */ |
| | | @PostMapping("/common/data/population/page") |
| | | R pagePopulation(ComMngPopulationDTO comMngPopulationVO); |
| | | |
| | | |
| | | /** |
| | | * 社区后台实有单位管理列表 |
| | | * |
| | | * @param pageComMngRealCompanyDTO |
| | |
| | | |
| | | /** |
| | | * 批量导入实有人口 |
| | | * |
| | | * @param list |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @PostMapping("/common/data/population/import") |
| | | R listSavePopulationServeExcelVO(@RequestBody List<ComMngPopulationServeExcelVO> list,@RequestParam(value = "communityId") Long communityId); |
| | | |
| | | /** |
| | | * 分页查询实有人口 |
| | | * |
| | | * @param comMngPopulationVO 查询参数 |
| | | * @return 分页集合 |
| | | */ |
| | | @PostMapping("/common/data/population/page") |
| | | R pagePopulation(ComMngPopulationDTO comMngPopulationVO); |
| | | |
| | | /** |
| | | * 根据id实有人口详细信息 |
| | | * |
| | | * @param populationId 实有人口id |
| | | * @return 实有人口详细信息 |
| | | */ |
| | | @PostMapping("/common/data/population/detail") |
| | | R detailPopulation(@RequestParam(value = "populationId") Long populationId); |
| | | |
| | | /** |
| | | * 根据id修改实有人口标签列表 |
| | | * |
| | | * @param populationTagDTO 请求参数 |
| | | * @return 修改结果 |
| | | */ |
| | | @PostMapping("/common/data/population/editTag") |
| | | R editTagPopulation(ComMngPopulationTagDTO populationTagDTO); |
| | | |
| | | } |