映射修改

Test_HIR_Net8
hang 2025-08-15 10:55:24 +08:00
parent 552a77ecd4
commit a2bd2857b2
2 changed files with 2 additions and 2 deletions

View File

@ -944,7 +944,7 @@ namespace IRaCIS.Core.Application.Service
} }
else else
{ {
var isPass = _userRoleRepository.Where(t => t.EMail == email).Any(t => t.CheckCode == verifyCode); var isPass = _identityUserRepository.Where(t => t.EMail == email).Any(t => t.CheckCode == verifyCode);
if (!isPass) if (!isPass)
{ {

View File

@ -138,7 +138,7 @@ namespace IRaCIS.Core.Application.Service
CreateMap<UserCommand, IdentityUser>(); CreateMap<UserCommand, IdentityUser>();
CreateMap<IdentityUser, UserBasicInfo>();