From 6020248afc29857e460a5e3ba7fc55a73d3f0330 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Fri, 22 Sep 2023 17:34:09 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Reading/Dto/ReadingImageTaskViewModel.cs | 24 +++++++++++++++++++
.../ReadingTaskQuestionMark.cs | 22 +++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index 0e1a1a45f..702844790 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
@@ -1038,6 +1038,30 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public QuestionType? QuestionType { get; set; }
public string? OrderMarkName { get; set; } = string.Empty;
+
+ public string? OrderMarkName { get; set; } = string.Empty;
+
+ ///
+ /// InstanceId
+ ///
+ public Guid? OtherInstanceId { get; set; }
+
+ ///
+ /// SeriesId
+ ///
+ public Guid? OtherSeriesId { get; set; }
+
+ ///
+ /// StudyId
+ ///
+ public Guid? OtherStudyId { get; set; }
+
+ public string? OtherMarkTool { get; set; }
+
+ public string? OtherPicturePath { get; set; }
+
+ public int? OtherNumberOfFrames { get; set; }
+ public string? OtherMeasureData { get; set; } = string.Empty;
}
public class GetReadingQuestionAndAnswerInDto
{
diff --git a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs
index a4e28b519..5704b3298 100644
--- a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs
+++ b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs
@@ -84,6 +84,28 @@ namespace IRaCIS.Core.Domain.Models
public string? OrderMarkName { get; set; } = string.Empty;
+ ///
+ /// InstanceId
+ ///
+ public Guid? OtherInstanceId { get; set; }
+
+ ///
+ /// SeriesId
+ ///
+ public Guid? OtherSeriesId { get; set; }
+
+ ///
+ /// StudyId
+ ///
+ public Guid? OtherStudyId { get; set; }
+
+ public string? OtherMarkTool { get; set; }
+
+ public string? OtherPicturePath { get; set; }
+
+ public int? OtherNumberOfFrames { get; set; }
+ public string? OtherMeasureData { get; set; } = string.Empty;
+
}