This commit is contained in:
he
2023-05-06 14:02:38 +08:00
parent 8b481aaae2
commit 11455e6c78
2 changed files with 63 additions and 23 deletions
@@ -182,7 +182,19 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public List<VisitTaskInfo> VisitTaskList { get; set; }
public List<ReadingReportDto> TaskQuestions { get; set; }
}
public List<LesionDto> LesionList { get; set; } = new List<LesionDto>();
}
public class LesionDto
{
public LesionType? LesionType { get; set; }
public int Count { get; set; }
}
public class VisitTaskGroupAnswerDto
{
@@ -1644,7 +1656,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class GetReportVerifyInDto
{
public Guid VisitTaskId { get; set; }
}
public bool IsConvertTask { get; set; }
public Guid? BeforeConvertedTaskId { get; set; }
}