From 768cad6ddc2bf724657e890203da114c78a98ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=96=B5=E4=BD=A0=E4=B8=AA=E6=B1=AA=E5=91=80?= Date: Sun, 24 Aug 2025 13:44:48 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8D=92=20doc(sysAuth):=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E6=8E=A5=E5=8F=A3=E7=94=A8=E9=80=94=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Admin.NET.Application/Service/App/Auth/AppAuthService.cs | 4 ++-- Admin.NET/Admin.NET.Core/Service/Auth/SysAuthService.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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);