| 
					
				 | 
			
			
				@@ -104,9 +104,10 @@ public class SysUserController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         ajax.put("posts", postService.selectPostAll());
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (StringUtils.isNotNull(userId))
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            SysUser sysUser = userService.selectUserById(userId);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             ajax.put(AjaxResult.DATA_TAG, userService.selectUserById(userId));
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             ajax.put("postIds", postService.selectPostListByUserId(userId));
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            ajax.put("roleIds", roleService.selectRoleListByUserId(userId));
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            ajax.put("roleIds", sysUser.getRoles().stream().map(SysRole::getRoleId).collect(Collectors.toList()));
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return ajax;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }
 
			 |