| | |
| | | import com.panzhihua.common.model.dtos.community.GetIdentityEidTokenDTO; |
| | | import com.panzhihua.common.model.dtos.community.*; |
| | | import com.panzhihua.common.model.dtos.community.building.admin.PageBuildingListDto; |
| | | import com.panzhihua.common.model.dtos.community.building.admin.PageBuildingUnitHouseListDto; |
| | | import com.panzhihua.common.model.dtos.community.cluster.PageClusterMemberDto; |
| | | import com.panzhihua.common.model.dtos.community.cluster.admin.*; |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | |
| | | */ |
| | | @GetMapping("/building/header/statistics/") |
| | | R buildingListHeaderStatisticsAdmin(@RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 社区后台-查询楼栋详情 |
| | | * @param id 楼栋id |
| | | * @return 楼栋详情 |
| | | */ |
| | | @GetMapping("/building/detail/admin/") |
| | | R detailBuildAdmin(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 查询楼栋下单元列表 |
| | | * @param id 楼栋id |
| | | * @return 单元列表 |
| | | */ |
| | | @GetMapping("/building/unit/list/admin") |
| | | R buildingUnitListAdmin(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 查询楼栋单元下房屋列表 |
| | | * @param unitHouseListDto 请求参数 |
| | | * @return 单元列表 |
| | | */ |
| | | @PostMapping("/building/unit/house/list/admin") |
| | | R buildingUnitHouseListAdmin(@RequestBody PageBuildingUnitHouseListDto unitHouseListDto); |
| | | |
| | | /** |
| | | * 查询楼栋单元下房屋详情 |
| | | * @param houseId 房屋id |
| | | * @param communityId 社区id |
| | | * @return 房屋详情 |
| | | */ |
| | | @GetMapping("/building/unit/house/detail/admin") |
| | | R unitHouseDetailAdmin(@RequestParam("houseId") Long houseId,@RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 查询社区下小区列表 |
| | | * @param communityId 社区id |
| | | * @return 小区列表 |
| | | */ |
| | | @GetMapping("/building/village/list/admin") |
| | | R buildingVillageListAdmin(@RequestParam("communityId") Long communityId); |
| | | } |