修改
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-03-14 14:40:14 +08:00
parent c2360dd519
commit 0f682dd184
2 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,8 @@
public string FirstName { get; set; } = string.Empty;
public string FullName => LastName + " / " + FirstName;
public string LastName { get; set; } = string.Empty;
public string UserName { get; set; }
}
public class SetAttachmentAuthorizedView

View File

@ -76,6 +76,7 @@ namespace IRaCIS.Core.Application.Service
.ForMember(d => d.ChineseName, u => u.MapFrom(t => t.Doctor.ChineseName))
.ForMember(d => d.FirstName, u => u.MapFrom(t => t.Doctor.FirstName))
.ForMember(d => d.LastName, u => u.MapFrom(t => t.Doctor.LastName))
.ForMember(d => d.UserName, u => u.MapFrom(t => t.Doctor.UserRole.UserName))
;
CreateMap<Doctor, GetTrialDoctorListOutDto>();
CreateMap<Doctor, ResumeConfirmDTO>();