修改默认值给“”
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
bbc737811a
commit
e065e44ab0
|
@ -361,7 +361,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public Guid? ClinicalFormId { get; set; }
|
public Guid? ClinicalFormId { get; set; }
|
||||||
|
|
||||||
public string PicturePath { get; set; } = string.Empty;
|
public string? PicturePath { get; set; }
|
||||||
|
|
||||||
public Guid SubjectId { get; set; }
|
public Guid SubjectId { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -306,8 +306,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public decimal FristAddTaskNum { get; set; }
|
public decimal FristAddTaskNum { get; set; }
|
||||||
|
|
||||||
public string OtherMeasureData { get; set; } = string.Empty;
|
public string? OtherMeasureData { get; set; }
|
||||||
public string MeasureData { get; set; } = string.Empty;
|
public string? MeasureData { get; set; }
|
||||||
|
|
||||||
public List<TableQuestionInfo> TableQuestionList { get; set; } = new List<TableQuestionInfo>();
|
public List<TableQuestionInfo> TableQuestionList { get; set; } = new List<TableQuestionInfo>();
|
||||||
}
|
}
|
||||||
|
|
|
@ -91,7 +91,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public bool IsCanEditPosition { get; set; } = false;
|
public bool IsCanEditPosition { get; set; } = false;
|
||||||
|
|
||||||
public string BlindName { get; set; } = string.Empty;
|
public string BlindName { get; set; }
|
||||||
|
|
||||||
public Guid? RowId { get; set; }
|
public Guid? RowId { get; set; }
|
||||||
|
|
||||||
|
@ -114,12 +114,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 类型值
|
/// 类型值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string TypeValue { get; set; }
|
public string? TypeValue { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 序号标记
|
/// 序号标记
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string OrderMark { get; set; } = string.Empty;
|
public string? OrderMark { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 数值类型
|
/// 数值类型
|
||||||
|
@ -129,7 +129,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 自定义单位
|
/// 自定义单位
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string CustomUnit { get; set; } = string.Empty;
|
public string? CustomUnit { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 单位
|
/// 单位
|
||||||
|
@ -140,7 +140,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public ReportLayType ReportLayType { get; set; } = ReportLayType.Group;
|
public ReportLayType ReportLayType { get; set; } = ReportLayType.Group;
|
||||||
|
|
||||||
public string ReportMark { get; set; } = string.Empty;
|
public string? ReportMark { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 高亮问题的答案
|
/// 高亮问题的答案
|
||||||
|
@ -310,7 +310,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
{
|
{
|
||||||
public Guid RowId { get; set; }
|
public Guid RowId { get; set; }
|
||||||
|
|
||||||
public string OrderMarkName { get; set; }
|
public string? OrderMarkName { get; set; }
|
||||||
|
|
||||||
public Guid? OrganInfoId { get; set; }
|
public Guid? OrganInfoId { get; set; }
|
||||||
|
|
||||||
|
@ -500,7 +500,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MeasureData
|
/// MeasureData
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MeasureData { get; set; }
|
public string? MeasureData { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// CreateTime
|
/// CreateTime
|
||||||
|
@ -683,7 +683,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 标记工具
|
/// 标记工具
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MarkTool { get; set; } = string.Empty;
|
public string? MarkTool { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// TrialId
|
/// TrialId
|
||||||
|
@ -738,7 +738,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MeasureData
|
/// MeasureData
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MeasureData { get; set; } = string.Empty;
|
public string? MeasureDataMeasureData { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否是当前任务添加
|
/// 是否是当前任务添加
|
||||||
|
@ -757,14 +757,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid? MergeRowId { get; set; }
|
public Guid? MergeRowId { get; set; }
|
||||||
|
|
||||||
public string BlindName { get; set; } = string.Empty;
|
public string? BlindName { get; set; }
|
||||||
|
|
||||||
public string OrderMark { get; set; } = string.Empty;
|
public string? OrderMark { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 截图地址
|
/// 截图地址
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PicturePath { get; set; } = string.Empty;
|
public string? PicturePath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 第一次添加的任务ID
|
/// 第一次添加的任务ID
|
||||||
|
@ -800,11 +800,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 来自于哪个标记
|
/// 来自于哪个标记
|
||||||
/// </summary>
|
/// </summary>
|
||||||
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 RowMark { get; set; } = string.Empty;
|
public string? RowMark { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1000,13 +1000,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 序号标记
|
/// 序号标记
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string OrderMark { get; set; } = string.Empty;
|
public string? OrderMark { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public string OrderMarkName { get; set; } = string.Empty;
|
public string? OrderMarkName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public string FromMark { get; set; } = string.Empty;
|
public string? FromMark { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 病灶类型
|
/// 病灶类型
|
||||||
|
@ -1059,7 +1059,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// RowIndex
|
/// RowIndex
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string RowIndex { get; set; }
|
public string? RowIndex { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// RowIndex
|
/// RowIndex
|
||||||
|
@ -1072,7 +1072,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsDicomReading { get; set; } = true;
|
public bool IsDicomReading { get; set; } = true;
|
||||||
|
|
||||||
public string BlindName { get; set; } = string.Empty;
|
public string? BlindName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -1093,10 +1093,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MeasureData
|
/// MeasureData
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MeasureData { get; set; } = string.Empty;
|
public string? MeasureData { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public string OtherMeasureData { get; set; } = string.Empty;
|
public string? OtherMeasureData { get; set; }
|
||||||
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; } = string.Empty;
|
public string? OtherMarkTool { get; set; }
|
||||||
|
|
||||||
public string OtherPicturePath { get; set; } = string.Empty;
|
public string? OtherPicturePath { get; set; }
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
|
|
||||||
|
@ -1165,12 +1165,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MarkTool
|
/// MarkTool
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MarkTool { get; set; } = string.Empty;
|
public string? MarkTool { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// PicturePath
|
/// PicturePath
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PicturePath { get; set; } = string.Empty;
|
public string? PicturePath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// NumberOfFrames
|
/// NumberOfFrames
|
||||||
|
@ -1180,14 +1180,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MeasureData
|
/// MeasureData
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MeasureData { get; set; } = string.Empty;
|
public string? MeasureData { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public Guid? FirstAddTaskId { get; set; }
|
public Guid? FirstAddTaskId { get; set; }
|
||||||
|
|
||||||
public QuestionType? QuestionType { get; set; }
|
public QuestionType? QuestionType { get; set; }
|
||||||
|
|
||||||
public string OrderMarkName { get; set; } = string.Empty;
|
public string? OrderMarkName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -1205,12 +1205,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid? OtherStudyId { get; set; }
|
public Guid? OtherStudyId { get; set; }
|
||||||
|
|
||||||
public string OtherMarkTool { get; set; } = string.Empty;
|
public string? OtherMarkTool { get; set; }
|
||||||
|
|
||||||
public string OtherPicturePath { get; set; } = string.Empty;
|
public string? OtherPicturePath { get; set; }
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
public string OtherMeasureData { get; set; } = string.Empty;
|
public string? OtherMeasureData { get; set; }
|
||||||
}
|
}
|
||||||
public class GetReadingQuestionAndAnswerInDto
|
public class GetReadingQuestionAndAnswerInDto
|
||||||
{
|
{
|
||||||
|
@ -2171,14 +2171,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 标记工具
|
/// 标记工具
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MarkTool { get; set; } = string.Empty;
|
public string? MarkTool { get; set; }
|
||||||
|
|
||||||
public decimal RowIndex { get; set; }
|
public decimal RowIndex { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 截图地址
|
/// 截图地址
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PicturePath { get; set; } = string.Empty;
|
public string? PicturePath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 任务Id
|
/// 任务Id
|
||||||
|
@ -2190,9 +2190,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; } = string.Empty;
|
public string? MeasureData { get; set; }
|
||||||
|
|
||||||
public string OtherMeasureData { get; set; } = string.Empty;
|
public string? OtherMeasureData { get; set; }
|
||||||
|
|
||||||
public Guid? SeriesId { get; set; }
|
public Guid? SeriesId { get; set; }
|
||||||
|
|
||||||
|
@ -2238,9 +2238,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; } = string.Empty;
|
public string? OtherMarkTool { get; set; }
|
||||||
|
|
||||||
public string OtherPicturePath { get; set; } = string.Empty;
|
public string? OtherPicturePath { get; set; }
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue