From 1c5aa8ce28764ac1dfdf315101753821888b3156 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Mon, 25 Sep 2023 14:39:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=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 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 10ea638d4..f0c8846eb 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -1920,21 +1920,21 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public int? NumberOfFrames { get; set; } - public string FromMark { get; set; } = string.Empty; + public string? FromMark { get; set; } - public string ReportMark { get; set; } = string.Empty; + public string? ReportMark { get; set; } /// /// 标记工具 /// - public string MarkTool { get; set; } = string.Empty; + public string? MarkTool { get; set; } - public decimal RowIndex { get; set; } + public decimal? RowIndex { get; set; } /// /// 截图地址 /// - public string PicturePath { get; set; } = string.Empty; + public string? PicturePath { get; set; } /// /// 任务Id @@ -1946,7 +1946,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public Guid TrialId { get; set; } - public string MeasureData { get; set; } = string.Empty; + public string? MeasureData { get; set; } public string? OtherMeasureData { get; set; } = string.Empty; @@ -1966,7 +1966,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto } } - public bool IsCanEditPosition { get; set; } = false; + public bool? IsCanEditPosition { get; set; } = false; public decimal FristAddTaskNum { get; set; } = 0; @@ -1974,7 +1974,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public decimal? WL { get; set; } - public string BlindName { get; set; } = string.Empty; + public string? BlindName { get; set; } = string.Empty; public bool IsDicomReading { get; set; } = true;