Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
d35bdb6899
|
@ -574,7 +574,7 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
public ReadingCategory ReadingCategory { get; set; }
|
||||
|
||||
|
||||
public List<TrialKeyPicturePath> ReadingNoneDicomMarkPathList { get; set; }
|
||||
public List<TrialKeyPicturePath> QuestionMarkPictureList { get; set; }
|
||||
|
||||
public List<TrialKeyPicturePath> TableQuestionRowPictureList { get; set; }
|
||||
|
|
|
@ -1285,6 +1285,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
|||
|
||||
ArmEnum = t.ArmEnum,
|
||||
|
||||
ReadingNoneDicomMarkPathList = t.ReadingNoneDicomMarkList.Select(c => new TrialKeyPicturePath { PicturePath = c.Path, OtherPicturePath = string.Empty }).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(),
|
||||
|
|
|
@ -9,6 +9,9 @@ namespace IRaCIS.Core.Domain.Models;
|
|||
public class VisitTask : BaseFullAuditEntity
|
||||
{
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
public List<ReadingNoneDicomMark> ReadingNoneDicomMarkList { get; set; }
|
||||
|
||||
|
||||
[JsonIgnore]
|
||||
|
||||
|
|
Loading…
Reference in New Issue