| | |
| | | package com.panzhihua.common.service.community; |
| | | |
| | | import com.panzhihua.common.model.dtos.AppletesBackstageConfigDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComActDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | |
| | | */ |
| | | @PostMapping("putjumpcontent") |
| | | R putJumpContent(@RequestBody AppletesBackstageConfigDTO appletesBackstageConfigDTO); |
| | | |
| | | /** |
| | | * 社区详情 |
| | | * @param communityId 社区id |
| | | * @return 社区详情 |
| | | */ |
| | | @PostMapping("detailcommunity") |
| | | R detailCommunity(@RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 小区详情 |
| | | * @param areaId 小区id |
| | | * @return 小区信息 |
| | | */ |
| | | @PostMapping("detailarea") |
| | | R detailArea(@RequestParam("areaId")Long areaId); |
| | | |
| | | /** |
| | | * 分页查询社区 |
| | | * @param pageComActDTO 查询参数 |
| | | * @return 分页集合 |
| | | */ |
| | | @PostMapping("pagecommunity") |
| | | R pageCommunity(@RequestBody PageComActDTO pageComActDTO); |
| | | } |