From 273d2a4b882118627c730a8e4117d63684298710 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Mon, 9 Sep 2024 10:51:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=98=85=E7=89=87=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Reading/Dto/ReadingImageTaskViewModel.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 1c32fe7d8..bba7f9d64 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -2165,14 +2165,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// /// 标记工具 /// - public string MarkTool { get; set; } + public string MarkTool { get; set; } = string.Empty; public decimal RowIndex { get; set; } /// /// 截图地址 /// - public string PicturePath { get; set; } + public string PicturePath { get; set; } = string.Empty; /// /// 任务Id @@ -2184,9 +2184,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public Guid TrialId { get; set; } - public string MeasureData { get; set; } + public string MeasureData { get; set; } = string.Empty; - public string OtherMeasureData { get; set; } + public string OtherMeasureData { get; set; } = string.Empty; public Guid? SeriesId { get; set; } @@ -2212,7 +2212,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public decimal? WL { get; set; } - public string BlindName { get; set; } + public string BlindName { get; set; } = string.Empty; public bool IsDicomReading { get; set; } = true; @@ -2232,9 +2232,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public Guid? OtherStudyId { get; set; } - public string OtherMarkTool { get; set; } + public string OtherMarkTool { get; set; } = string.Empty; - public string OtherPicturePath { get; set; } + public string OtherPicturePath { get; set; } = string.Empty; public int? OtherNumberOfFrames { get; set; }