Compare commits

..

No commits in common. "981585498de2c56cf795a8abe111bab0746c9af1" and "34f6292fa74ea903cb592d7f7b4fcd5c9db34fd3" have entirely different histories.

3 changed files with 1 additions and 6 deletions

View File

@ -574,7 +574,7 @@ namespace IRaCIS.Core.Application.Contracts
public ReadingCategory ReadingCategory { get; set; } public ReadingCategory ReadingCategory { get; set; }
public List<string> ReadingNoneDicomMarkPathList { get; set; }
public List<TrialKeyPicturePath> QuestionMarkPictureList { get; set; } public List<TrialKeyPicturePath> QuestionMarkPictureList { get; set; }
public List<TrialKeyPicturePath> TableQuestionRowPictureList { get; set; } public List<TrialKeyPicturePath> TableQuestionRowPictureList { get; set; }

View File

@ -1285,8 +1285,6 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
ArmEnum = t.ArmEnum, ArmEnum = t.ArmEnum,
ReadingNoneDicomMarkPathList = t.ReadingNoneDicomMarkList.Select(t => t.Path).ToList(),
QuestionMarkPictureList = t.ReadingTaskQuestionMarkList.Select(c => new TrialKeyPicturePath { PicturePath = c.PicturePath, OtherPicturePath = c.OtherPicturePath }).ToList(), QuestionMarkPictureList = t.ReadingTaskQuestionMarkList.Select(c => new TrialKeyPicturePath { PicturePath = c.PicturePath, OtherPicturePath = c.OtherPicturePath }).ToList(),
TableQuestionRowPictureList = t.LesionList.Select(c => new TrialKeyPicturePath { PicturePath = c.PicturePath, OtherPicturePath = c.OtherPicturePath }).ToList(), TableQuestionRowPictureList = t.LesionList.Select(c => new TrialKeyPicturePath { PicturePath = c.PicturePath, OtherPicturePath = c.OtherPicturePath }).ToList(),

View File

@ -9,9 +9,6 @@ namespace IRaCIS.Core.Domain.Models;
public class VisitTask : BaseFullAuditEntity public class VisitTask : BaseFullAuditEntity
{ {
#region 导航属性 #region 导航属性
[JsonIgnore]
public List<ReadingNoneDicomMark> ReadingNoneDicomMarkList { get; set; }
[JsonIgnore] [JsonIgnore]