diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs index 4e15b9937..1686a9b37 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs @@ -471,6 +471,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public Guid SubjectId { get; set; } + public List JudgeInfoList { get; set; } + + } + + public class JudgeInfo + { + public string QuestionName { get; set; } + + public string Answer { get; set; } + } } diff --git a/IRaCIS.Core.Domain/Allocation/VisitTask.cs b/IRaCIS.Core.Domain/Allocation/VisitTask.cs index 58c558b47..018d42f53 100644 --- a/IRaCIS.Core.Domain/Allocation/VisitTask.cs +++ b/IRaCIS.Core.Domain/Allocation/VisitTask.cs @@ -139,6 +139,12 @@ namespace IRaCIS.Core.Domain.Models public decimal VisitTaskNum { get; set; } + + /// + /// 首次阅片时间 + /// + public DateTime? FirstReadingTime { get; set; } + #region 一致性分析的任务特有数据 ///