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));
CreateMap<ReadingMedicalReviewDialog, GetMedicalReviewDialogOutDto>()
.ForMember(x => x.FileList, y => y.MapFrom(n => n.FileList))
.ForMember(x => x.CreateUserName, y => y.MapFrom(n => n.CreateUser.UserName));
#endregion

View File

@ -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
/// <summary>
/// 文件
/// </summary>
[NotMapped]
public List<ImageInfo> FileList
{
get