From a8af33a30a5a93446187e0dfbdc8718b5932ebfb Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Mon, 30 Mar 2026 17:43:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8E=92=E5=BA=8F?= 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 82af5ef1a..341682d80 100644 --- a/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs +++ b/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs @@ -127,7 +127,7 @@ public class SegmentationService(IRepository _segmentationReposito .WhereIf(inQuery.Id != null, x => x.Id == inQuery.Id) .ProjectTo(_mapper.ConfigurationProvider); - var pageList = await segmentQueryable.ToPagedListAsync(inQuery); + var pageList = await segmentQueryable.ToPagedListAsync(inQuery,nameof(SegmentView.SegmentMumber)); return pageList; }