com.didiglobal.logi.security.dao.UserRoleDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logi-security-spring-boot-starter Show documentation
Show all versions of logi-security-spring-boot-starter Show documentation
logi-security 提供项目大多都需要的一些基础功能(用户、角色、权限、登录、注册、操作记录)
package com.didiglobal.logi.security.dao;
import com.didiglobal.logi.security.common.entity.UserRole;
import java.util.List;
/**
* @author cjm
*/
public interface UserRoleDao {
/**
* 根据角色id获取用户idList
* @param roleId 角色id
* @return 用户idList
*/
List selectUserIdListByRoleId(Integer roleId);
/**
* 根据用户id获取角色idList
* @param userId 用户id
* @return 角色idList
*/
List selectRoleIdListByUserId(Integer userId);
/**
* 批量插入
* @param userRoleList 用户角色关联信息
*/
void insertBatch(List userRoleList);
/**
* 根据角色或者用户id,删除用户与角色的关系
* @param userId 用户id
* @param roleId 角色id
*/
int deleteByUserIdOrRoleId(Integer userId, Integer roleId);
/**
* 根据角色id获取授予用户数
* @param roleId 角色id
* @return 角色授予用户数
*/
int selectCountByRoleId(Integer roleId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy