| | |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.common.model.vos.MenuVO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | |
| | | /** |
| | | * 平台菜单列表 |
| | | * @param type 1 运营平台 2 社区平台 |
| | | * @param communityId 社区id 0 运营平台 |
| | | * @return 菜单集合 |
| | | */ |
| | | @PostMapping("/role/listmenubackstage") |
| | | R listMenuBackstage(@RequestParam("type")int type); |
| | | R listMenuBackstage(@RequestParam("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 设置角色的权限 |
| | |
| | | */ |
| | | @PostMapping("putagreement") |
| | | R putAgreement(@RequestBody SysUserAgreementVO sysUserAgreementVO); |
| | | |
| | | /** |
| | | * 用户标签 |
| | | * @param communityId 社区id |
| | | * @return 标签集合 |
| | | */ |
| | | @PostMapping("listcommngusertag") |
| | | R listComMngUserTag(@RequestParam("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 新增删除用户标签 |
| | | * @param systemmanagementConfigVO 操作内容 |
| | | * @return 操作结果 |
| | | */ |
| | | @PostMapping("putcommngusertag") |
| | | R putComMngUserTag(@RequestBody SystemmanagementConfigVO systemmanagementConfigVO); |
| | | } |