From bb7f6f3a1ca17140cd097fb89aae3eb21b01b551 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Mon, 16 Mar 2026 14:51:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E5=89=B2=E6=9F=A5=E8=AF=A2=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/Segment/SegmentationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs b/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs index 7f0c12824..74a4c71e0 100644 --- a/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs +++ b/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs @@ -42,7 +42,7 @@ public class SegmentationService(IRepository _segmentationReposito .WhereIf(inQuery.SeriesId != null, x => x.SeriesId == inQuery.SeriesId) .WhereIf(inQuery.StudyId != null, x => x.StudyId == inQuery.StudyId) .WhereIf(inQuery.SubjectId != null, x => x.SubjectId == inQuery.SubjectId) - .WhereIf(inQuery.SubjectVisitId != null, x => x.TrialId == inQuery.SubjectVisitId) + .WhereIf(inQuery.SubjectVisitId != null, x => x.SubjectVisitId == inQuery.SubjectVisitId) .WhereIf(inQuery.VisitTaskId != null, x => x.VisitTaskId == inQuery.VisitTaskId) .ProjectTo(_mapper.ConfigurationProvider);