diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index 3eebc5573..0be0d769e 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -14621,6 +14621,19 @@
+
+
+ 清除跳过阅片的缓存
+
+
+
+
+
+ 设置跳过阅片的缓存
+
+
+
+
获取下一个阅片任务
diff --git a/IRaCIS.Core.Application/Service/Visit/DTO/PatientViewModel.cs b/IRaCIS.Core.Application/Service/Visit/DTO/PatientViewModel.cs
index 5acd1f0bb..f3c8d4a72 100644
--- a/IRaCIS.Core.Application/Service/Visit/DTO/PatientViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Visit/DTO/PatientViewModel.cs
@@ -1051,16 +1051,33 @@ namespace IRaCIS.Application.Contracts
public string CallingAE { get; set; } = string.Empty;
+ public string BodyPartExamined { get; set; } = string.Empty;
+
public string PatientIdStr { get; set; } = string.Empty;
public string PatientName { get; set; } = string.Empty;
public string PatientAge { get; set; } = string.Empty;
public string PatientSex { get; set; } = string.Empty;
+
+ public string PatientBirthDate { get; set; } = string.Empty;
}
- public class PatientStudySimpleView: VisitPatientStudyFilterView
+ public class PatientStudySimpleView
{
-
+ public Guid SCPStudyId { get; set; }
+
+ public Guid PatientId { get; set; }
+
+ public DateTime? StudyTime { get; set; }
+ public string Modalities { get; set; } = string.Empty;
+
+ public string Description { get; set; } = string.Empty;
+ public int SeriesCount { get; set; } = 0;
+ public int InstanceCount { get; set; } = 0;
+
+ public string CalledAE { get; set; } = string.Empty;
+
+ public string CallingAE { get; set; } = string.Empty;
public Guid? SubjectVisitId { get; set; }
public string? VisitName { get; set; }
diff --git a/IRaCIS.Core.Application/Service/Visit/PatientService.cs b/IRaCIS.Core.Application/Service/Visit/PatientService.cs
index 6cb4ab6d4..dc49fe0ad 100644
--- a/IRaCIS.Core.Application/Service/Visit/PatientService.cs
+++ b/IRaCIS.Core.Application/Service/Visit/PatientService.cs
@@ -192,6 +192,9 @@ namespace IRaCIS.Application.Services
SCPStudyId = scpStudy.Id,
SeriesCount = scpStudy.SeriesCount,
StudyTime = scpStudy.StudyTime,
+
+
+
SubjectVisitId = scpStudy.SubjectVisitId,
VisitName = scpStudy.SubjectVisit.VisitName,
@@ -262,7 +265,9 @@ namespace IRaCIS.Application.Services
SCPStudyId = scpStudy.Id,
SeriesCount = scpStudy.SeriesCount,
StudyTime = scpStudy.StudyTime,
+ BodyPartExamined=scpStudy.BodyPartExamined,
+ PatientBirthDate=scpStudy.PatientBirthDate,
PatientAge = scpStudy.PatientAge,
PatientIdStr = scpStudy.PatientIdStr,
PatientName = scpStudy.PatientName,