This commit is contained in:
he
2022-09-20 17:46:43 +08:00
parent 396e83bfae
commit 668beaa502
6 changed files with 124 additions and 15 deletions
@@ -149,7 +149,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class TableRowInfo
{
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
public List<TableQuestionInfo> TableQuestionList { get; set; } = new List<TableQuestionInfo>();
}
@@ -168,7 +168,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid QuestionId { get; set; }
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
/// <summary>
/// 问题标识
@@ -34,7 +34,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public bool IsShowInDicom { get; set; } = false;
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
/// <summary>
/// 问题类型
@@ -150,7 +150,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class VistTaskTableQuestionRowInfo
{
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
/// <summary>
/// 序号标记
@@ -191,9 +191,20 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsCurrentTask { get; set; }
}
public class SplitLesionInDto
{
public Guid VisitTaskId { get; set; }
public Guid QuestionId { get; set; }
public decimal RowIndex { get; set; }
}
public class GetReadingToolInDto
{
public Guid VisitTaskId { get; set; }
}
public class GetReadingToolOutDto
@@ -227,7 +238,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid QuestionId { get; set; }
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
}
public class GetDicomReadingQuestionAnswerInDto
@@ -239,7 +250,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class CopyTableAnswerDto
{
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
/// <summary>
/// 问题标识
@@ -366,7 +377,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// RowIndex
/// </summary>
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
/// <summary>
/// MeasureData
@@ -953,7 +964,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public Guid QuestionId { get; set; }
public int RowIndex { get; set; }
public decimal RowIndex { get; set; }
/// <summary>
/// 任务Id
@@ -110,6 +110,11 @@ namespace IRaCIS.Application.Services
}
public async Task SplitLesion()
{
}
/// <summary>
/// 根据任务ID获取ReadingTool
/// </summary>