Uat_Study
he 2022-12-28 10:59:14 +08:00
parent 1da58cc0fa
commit 3817792628
2 changed files with 3 additions and 1 deletions

View File

@ -204,6 +204,7 @@ namespace IRaCIS.Core.Application.Service
.ForMember(x => x.TaskMedicalReviewId, y => y.MapFrom(n => n.Id)); .ForMember(x => x.TaskMedicalReviewId, y => y.MapFrom(n => n.Id));
CreateMap<ReadingMedicalReviewDialog, GetMedicalReviewDialogOutDto>() CreateMap<ReadingMedicalReviewDialog, GetMedicalReviewDialogOutDto>()
.ForMember(x => x.FileList, y => y.MapFrom(n => n.FileList))
.ForMember(x => x.CreateUserName, y => y.MapFrom(n => n.CreateUser.UserName)); .ForMember(x => x.CreateUserName, y => y.MapFrom(n => n.CreateUser.UserName));
#endregion #endregion

View File

@ -6,9 +6,9 @@
using System; using System;
using IRaCIS.Core.Domain.Share; using IRaCIS.Core.Domain.Share;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq; using System.Linq;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models namespace IRaCIS.Core.Domain.Models
{ {
@ -105,6 +105,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary> /// <summary>
/// 文件 /// 文件
/// </summary> /// </summary>
[NotMapped]
public List<ImageInfo> FileList public List<ImageInfo> FileList
{ {
get get