Test.EIImageViewer
parent
07c748a4ce
commit
217a618082
|
@ -104,6 +104,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ValueUnit? Unit { get; set; }
|
public ValueUnit? Unit { get; set; }
|
||||||
|
|
||||||
|
public decimal FristAddTaskNum { get; set; }
|
||||||
|
|
||||||
|
public ReportLayType ReportLayType { get; set; } = ReportLayType.Group;
|
||||||
|
|
||||||
public List<TaskQuestionAnswer> Answer { get; set; } = new List<TaskQuestionAnswer>();
|
public List<TaskQuestionAnswer> Answer { get; set; } = new List<TaskQuestionAnswer>();
|
||||||
|
|
||||||
public List<ReadingReportDto> Childrens { get; set; } = new List<ReadingReportDto>();
|
public List<ReadingReportDto> Childrens { get; set; } = new List<ReadingReportDto>();
|
||||||
|
|
|
@ -140,7 +140,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
ShowOrder = x.ShowOrder,
|
ShowOrder = x.ShowOrder,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
|
ReportLayType=ReportLayType.Group,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
// 分组
|
// 分组
|
||||||
|
@ -163,7 +163,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
OrderMark = x.OrderMark,
|
OrderMark = x.OrderMark,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
|
ReportLayType = ReportLayType.Question,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
// 问题
|
// 问题
|
||||||
|
@ -196,6 +196,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
IsCanEditPosition = x.IsCanEditPosition,
|
IsCanEditPosition = x.IsCanEditPosition,
|
||||||
RowIndex = x.RowIndex,
|
RowIndex = x.RowIndex,
|
||||||
BlindName = x.BlindName,
|
BlindName = x.BlindName,
|
||||||
|
ReportLayType = ReportLayType.Lesions,
|
||||||
|
FristAddTaskNum= x.FristAddTaskNum,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
|
||||||
|
@ -217,6 +219,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
ShowOrder = x.ShowOrder,
|
ShowOrder = x.ShowOrder,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
|
ReportLayType = ReportLayType.TableQuestion,
|
||||||
|
FristAddTaskNum= row.FristAddTaskNum,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
ShowOrder = x.ShowOrder,
|
ShowOrder = x.ShowOrder,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
|
ReportLayType= ReportLayType.Group,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
// 分组
|
// 分组
|
||||||
|
@ -140,7 +140,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
OrderMark = x.OrderMark,
|
OrderMark = x.OrderMark,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
|
ReportLayType = ReportLayType.Question,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
// 问题
|
// 问题
|
||||||
|
@ -173,6 +173,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
IsCanEditPosition = x.IsCanEditPosition,
|
IsCanEditPosition = x.IsCanEditPosition,
|
||||||
RowIndex = x.RowIndex,
|
RowIndex = x.RowIndex,
|
||||||
BlindName = x.BlindName,
|
BlindName = x.BlindName,
|
||||||
|
ReportLayType = ReportLayType.Lesions,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
|
||||||
|
@ -194,6 +195,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
ShowOrder = x.ShowOrder,
|
ShowOrder = x.ShowOrder,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
|
ReportLayType = ReportLayType.TableQuestion,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,32 @@ namespace IRaCIS.Core.Domain.Share
|
||||||
Percentage = 2
|
Percentage = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 报告层级
|
||||||
|
/// </summary>
|
||||||
|
public enum ReportLayType
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 分组
|
||||||
|
/// </summary>
|
||||||
|
Group=0,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 问题
|
||||||
|
/// </summary>
|
||||||
|
Question = 1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 病灶
|
||||||
|
/// </summary>
|
||||||
|
Lesions = 2,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 表格问题
|
||||||
|
/// </summary>
|
||||||
|
TableQuestion = 3,
|
||||||
|
}
|
||||||
|
|
||||||
public enum ImagePlatform
|
public enum ImagePlatform
|
||||||
{
|
{
|
||||||
None = 0,
|
None = 0,
|
||||||
|
|
Loading…
Reference in New Issue