From 369a0803f987e2b8521d75f6de68b16abd86ae4f Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Mon, 9 Feb 2026 20:58:45 -0500 Subject: [PATCH] =?UTF-8?q?MFA=20=E8=BF=94=E5=9B=9E=E4=B8=A4=E7=A7=8D?= =?UTF-8?q?=E9=82=AE=E7=AE=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs | 4 ++++ IRaCIS.Core.Application/Service/Management/UserService.cs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs b/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs index 42bf4fcd7..3bbbcfcdd 100644 --- a/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs +++ b/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs @@ -94,6 +94,10 @@ namespace IRaCIS.Application.Contracts public string UserCode { get; set; } public string EMail { get; set; } + public string HiddenEmail { get; set; } + + + public int Status { get; set; } public bool IsTestUser { get; set; } public bool IsZhiZhun { get; set; } diff --git a/IRaCIS.Core.Application/Service/Management/UserService.cs b/IRaCIS.Core.Application/Service/Management/UserService.cs index b866781ec..788cb9392 100644 --- a/IRaCIS.Core.Application/Service/Management/UserService.cs +++ b/IRaCIS.Core.Application/Service/Management/UserService.cs @@ -1207,7 +1207,7 @@ namespace IRaCIS.Core.Application.Service var hiddenEmail = IRCEmailPasswordHelper.MaskEmail(email); - userLoginReturnModel.BasicInfo.EMail = hiddenEmail; + userLoginReturnModel.BasicInfo.HiddenEmail = hiddenEmail; //修改密码 || 90天修改密码再mfa 之前 if (userLoginReturnModel.BasicInfo.IsFirstAdd || userLoginReturnModel.BasicInfo.NeedChangePassWord)