We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2183f9 commit bfa410bCopy full SHA for bfa410b
1 file changed
application/src/main/java/top/cadecode/uniboot/controller/SystemController.java
@@ -151,6 +151,12 @@ public boolean userDelete(@RequestBody @NotEmpty List<Long> userIdList) {
151
return sysUserService.removeBatchByIds(userIdList);
152
}
153
154
+ @ApiOperation("获取用户(带角色)byUserIds")
155
+ @PostMapping("user/list_roles_vo_by_user_ids")
156
+ public List<SysUserRolesVo> userListRolesVoByUserIds(@RequestBody @NotEmpty List<Long> userIdList) {
157
+ return sysUserService.listRolesVoByUserIds(userIdList);
158
+ }
159
+
160
@ApiOperation("查询角色列表")
161
@PostMapping("role/list")
162
public List<SysRoleListVo> roleList() {
0 commit comments