From cc60c4f9f0739b507e6d948f7b9d1032754a4ab8 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Thu, 25 Aug 2022 16:19:13 +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/ReadingQuestionViewModel.cs | 20 +++++++++++++++++++
.../Reading/ReadingQuestionSystem.cs | 5 +++++
.../Reading/ReadingQuestionTrial.cs | 6 ++++++
3 files changed, 31 insertions(+)
diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
index b52b8d9f4..b26c1be76 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
@@ -488,6 +488,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示在Dicom阅片中
///
public bool IsShowInDicom { get; set; }
+
+ ///
+ /// 序号标记
+ ///
+ public string OrderMark { get; set; } = string.Empty;
}
public class ReadingQuestionSystemView
@@ -605,6 +610,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示在Dicom阅片中
///
public bool IsShowInDicom { get; set; }
+
+ ///
+ /// 序号标记
+ ///
+ public string OrderMark { get; set; } = string.Empty;
}
@@ -898,6 +908,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示在Dicom阅片中
///
public bool IsShowInDicom { get; set; } = false;
+
+ ///
+ /// 序号标记
+ ///
+ public string OrderMark { get; set; } = string.Empty;
}
@@ -1022,6 +1037,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示在Dicom阅片中
///
public bool IsShowInDicom { get; set; } = false;
+
+ ///
+ /// 序号标记
+ ///
+ public string OrderMark { get; set; } = string.Empty;
}
diff --git a/IRaCIS.Core.Domain/Reading/ReadingQuestionSystem.cs b/IRaCIS.Core.Domain/Reading/ReadingQuestionSystem.cs
index e3d054790..7bd86fbfe 100644
--- a/IRaCIS.Core.Domain/Reading/ReadingQuestionSystem.cs
+++ b/IRaCIS.Core.Domain/Reading/ReadingQuestionSystem.cs
@@ -119,6 +119,11 @@ namespace IRaCIS.Core.Domain.Models
///
public bool IsShowInDicom { get; set; } = false;
+ ///
+ /// 序号标记
+ ///
+ public string OrderMark { get; set; } = string.Empty;
+
///
/// 创建人
///
diff --git a/IRaCIS.Core.Domain/Reading/ReadingQuestionTrial.cs b/IRaCIS.Core.Domain/Reading/ReadingQuestionTrial.cs
index 93144bbd6..72c19597d 100644
--- a/IRaCIS.Core.Domain/Reading/ReadingQuestionTrial.cs
+++ b/IRaCIS.Core.Domain/Reading/ReadingQuestionTrial.cs
@@ -157,6 +157,12 @@ namespace IRaCIS.Core.Domain.Models
///
public bool IsShowInDicom { get; set; } = false;
+
+ ///
+ /// 序号标记
+ ///
+ public string OrderMark { get; set; } = string.Empty;
+
///
/// 分页标准
///