修改阅片接口默认值
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
fe4b48f4bc
commit
273d2a4b88
|
@ -2165,14 +2165,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 标记工具
|
/// 标记工具
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MarkTool { get; set; }
|
public string MarkTool { get; set; } = string.Empty;
|
||||||
|
|
||||||
public decimal RowIndex { get; set; }
|
public decimal RowIndex { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 截图地址
|
/// 截图地址
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PicturePath { get; set; }
|
public string PicturePath { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 任务Id
|
/// 任务Id
|
||||||
|
@ -2184,9 +2184,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid TrialId { get; set; }
|
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; }
|
public Guid? SeriesId { get; set; }
|
||||||
|
|
||||||
|
@ -2212,7 +2212,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public decimal? WL { get; set; }
|
public decimal? WL { get; set; }
|
||||||
|
|
||||||
public string BlindName { get; set; }
|
public string BlindName { get; set; } = string.Empty;
|
||||||
|
|
||||||
public bool IsDicomReading { get; set; } = true;
|
public bool IsDicomReading { get; set; } = true;
|
||||||
|
|
||||||
|
@ -2232,9 +2232,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid? OtherStudyId { get; set; }
|
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; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue