| | |
| | | |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import com.panzhihua.service_user.service.UserService; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | public R listComMngUserTag(@RequestParam("communityId")Long communityId){ |
| | | return userService.listComMngUserTag(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 新增删除用户标签 |
| | | * @param systemmanagementConfigVO 操作内容 |
| | | * @return 操作结果 |
| | | */ |
| | | @PostMapping("putcommngusertag") |
| | | public R putComMngUserTag(@RequestBody SystemmanagementConfigVO systemmanagementConfigVO){ |
| | | return userService.putComMngUserTag(systemmanagementConfigVO); |
| | | } |
| | | } |