字符串默认值问题
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-09-14 11:18:11 +08:00
parent e997cb2a8f
commit d507e625c6
1 changed files with 4 additions and 4 deletions

View File

@ -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; }