修改阅片接口默认值
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-09-09 10:51:14 +08:00
parent fe4b48f4bc
commit 273d2a4b88
1 changed files with 7 additions and 7 deletions

View File

@ -2165,14 +2165,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// 标记工具
/// </summary>
public string MarkTool { get; set; }
public string MarkTool { get; set; } = string.Empty;
public decimal RowIndex { get; set; }
/// <summary>
/// 截图地址
/// </summary>
public string PicturePath { get; set; }
public string PicturePath { get; set; } = string.Empty;
/// <summary>
/// 任务Id
@ -2184,9 +2184,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
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
/// </summary>
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; }