mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	角色列表返回类型保持一致
This commit is contained in:
		@@ -39,7 +39,7 @@ public interface SysRoleMapper
 | 
			
		||||
     * @param userId 用户ID
 | 
			
		||||
     * @return 选中角色ID列表
 | 
			
		||||
     */
 | 
			
		||||
    public List<Integer> selectRoleListByUserId(Long userId);
 | 
			
		||||
    public List<Long> selectRoleListByUserId(Long userId);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 通过角色ID查询角色
 | 
			
		||||
 
 | 
			
		||||
@@ -49,7 +49,7 @@ public interface ISysRoleService
 | 
			
		||||
     * @param userId 用户ID
 | 
			
		||||
     * @return 选中角色ID列表
 | 
			
		||||
     */
 | 
			
		||||
    public List<Integer> selectRoleListByUserId(Long userId);
 | 
			
		||||
    public List<Long> selectRoleListByUserId(Long userId);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 通过角色ID查询角色
 | 
			
		||||
 
 | 
			
		||||
@@ -122,7 +122,7 @@ public class SysRoleServiceImpl implements ISysRoleService
 | 
			
		||||
     * @return 选中角色ID列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<Integer> selectRoleListByUserId(Long userId)
 | 
			
		||||
    public List<Long> selectRoleListByUserId(Long userId)
 | 
			
		||||
    {
 | 
			
		||||
        return roleMapper.selectRoleListByUserId(userId);
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 | 
			
		||||
		<include refid="selectRoleVo"/>
 | 
			
		||||
	</select>
 | 
			
		||||
	
 | 
			
		||||
	<select id="selectRoleListByUserId" parameterType="Long" resultType="Integer">
 | 
			
		||||
	<select id="selectRoleListByUserId" parameterType="Long" resultType="Long">
 | 
			
		||||
		select r.role_id
 | 
			
		||||
        from sys_role r
 | 
			
		||||
	        left join sys_user_role ur on ur.role_id = r.role_id
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user