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)