diff --git a/IRaCIS.Core.Application/Service/Reading/_MapConfig.cs b/IRaCIS.Core.Application/Service/Reading/_MapConfig.cs index 06b856bc0..2230288e0 100644 --- a/IRaCIS.Core.Application/Service/Reading/_MapConfig.cs +++ b/IRaCIS.Core.Application/Service/Reading/_MapConfig.cs @@ -204,6 +204,7 @@ namespace IRaCIS.Core.Application.Service .ForMember(x => x.TaskMedicalReviewId, y => y.MapFrom(n => n.Id)); CreateMap() + .ForMember(x => x.FileList, y => y.MapFrom(n => n.FileList)) .ForMember(x => x.CreateUserName, y => y.MapFrom(n => n.CreateUser.UserName)); #endregion diff --git a/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs b/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs index d1778a18f..2508de07d 100644 --- a/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs +++ b/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs @@ -6,9 +6,9 @@ using System; using IRaCIS.Core.Domain.Share; using System.ComponentModel.DataAnnotations; -using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models { @@ -105,6 +105,7 @@ namespace IRaCIS.Core.Domain.Models /// /// 文件 /// + [NotMapped] public List FileList { get