修改查询列表
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
e0aa9fb1d9
commit
425bd7bf9a
|
@ -14621,6 +14621,19 @@
|
|||
<param name="inDto"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Application.Services.ReadingImageTaskService.ClearSkipReadingCache">
|
||||
<summary>
|
||||
清除跳过阅片的缓存
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Application.Services.ReadingImageTaskService.SetSkipReadingCache(IRaCIS.Core.Application.Service.Reading.Dto.SetSkipReadingCacheInDto)">
|
||||
<summary>
|
||||
设置跳过阅片的缓存
|
||||
</summary>
|
||||
<param name="inDto"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Application.Services.ReadingImageTaskService.GetNextTask(IRaCIS.Core.Application.Service.Reading.Dto.GetNextTaskInDto)">
|
||||
<summary>
|
||||
获取下一个阅片任务
|
||||
|
|
|
@ -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; }
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue