字符串默认值问题
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
e997cb2a8f
commit
d507e625c6
|
@ -1093,10 +1093,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MeasureData
|
/// MeasureData
|
||||||
/// </summary>
|
/// </summary>
|
||||||
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 int ShowOrder { get; set; }
|
public int ShowOrder { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
@ -1119,9 +1119,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