All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ueboot.shiro.repository.userrole.UserRoleRepository Maven / Gradle / Ivy

The newest version!
/*
* Copyright (c)  2018
* All rights reserved.
* 2018-08-21 09:39:51
*/
package com.ueboot.shiro.repository.userrole;

import com.ueboot.shiro.entity.UserRole;
import com.ueboot.core.repository.BaseRepository;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
* 这个类里面使用spring data jpa 方式实现数据库的CRUD
* Created on 2018-08-21 09:39:51
* @author yangkui
* @since 2.1.0 by ueboot-generator
*/
@Repository
public interface UserRoleRepository extends BaseRepository,UserRoleBaseRepository {

    /**
     * 根据用户名称查找用户所属的角色列表
     * @param userName 用户名称
     * @return 角色列表
     */
    List findByUserUserName(String userName);

    /**
     * 根据用户ID查询用户所属角色
     * @param userId 用户ID
     * @return 角色列表
     */
    List findByUserId(Long userId);
    /**
     * 根据角色ID查询角色所属用户列表
     * @param roleId 角色ID
     * @return 用户列表
     */
    List findByRoleId(Long roleId);



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy