mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 16:50:52 +08:00
19 lines
542 B
C#
19 lines
542 B
C#
using Volo.Abp.Domain.Repositories;
|
|
using Yi.Framework.Rbac.Domain.Entities;
|
|
using Yi.Framework.Rbac.Domain.Shared.Dtos;
|
|
using Yi.Framework.SqlSugarCore.Abstractions;
|
|
|
|
namespace Yi.Framework.Rbac.Domain.Repositories
|
|
{
|
|
public interface IUserRepository : ISqlSugarRepository<UserEntity>
|
|
{
|
|
/// <summary>
|
|
/// 获取当前登录用户的所有信息
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <returns></returns>
|
|
Task<UserRoleMenuDto> GetUserAllInfoAsync(Guid userId);
|
|
|
|
}
|
|
}
|