diff --git a/Admin.NET/Admin.NET.Application/Service/App/Auth/AppAuthService.cs b/Admin.NET/Admin.NET.Application/Service/App/Auth/AppAuthService.cs index afdf23cb..ce839f15 100644 --- a/Admin.NET/Admin.NET.Application/Service/App/Auth/AppAuthService.cs +++ b/Admin.NET/Admin.NET.Application/Service/App/Auth/AppAuthService.cs @@ -155,10 +155,10 @@ public class AppAuthService : IDynamicApiController, ITransient } /// - /// 获取登录账号 🔖 + /// 获取当前登陆用户信息 🔖 /// /// - [DisplayName("获取登录账号")] + [DisplayName("获取当前登陆用户信息")] public virtual async Task GetUserInfo() { var user = await _sysUserRep.GetByIdAsync(_appUserManager.UserId) ?? throw Oops.Oh(ErrorCodeEnum.D1011).StatusCode(401); diff --git a/Admin.NET/Admin.NET.Core/Service/Auth/SysAuthService.cs b/Admin.NET/Admin.NET.Core/Service/Auth/SysAuthService.cs index 62dbe578..ccdf96c4 100644 --- a/Admin.NET/Admin.NET.Core/Service/Auth/SysAuthService.cs +++ b/Admin.NET/Admin.NET.Core/Service/Auth/SysAuthService.cs @@ -288,10 +288,10 @@ public class SysAuthService : IDynamicApiController, ITransient } /// - /// 获取登录账号 🔖 + /// 获取当前登陆用户信息 🔖 /// /// - [DisplayName("获取登录账号")] + [DisplayName("获取当前登陆用户信息")] public virtual async Task GetUserInfo() { var user = await _sysUserRep.GetByIdAsync(_userManager.UserId) ?? throw Oops.Oh(ErrorCodeEnum.D1011).StatusCode(401);