修改排序
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2026-03-30 17:43:42 +08:00
parent 9a40cf66cc
commit a8af33a30a
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ public class SegmentationService(IRepository<Segmentation> _segmentationReposito
.WhereIf(inQuery.Id != null, x => x.Id == inQuery.Id)
.ProjectTo<SegmentView>(_mapper.ConfigurationProvider);
var pageList = await segmentQueryable.ToPagedListAsync(inQuery);
var pageList = await segmentQueryable.ToPagedListAsync(inQuery,nameof(SegmentView.SegmentMumber));
return pageList;
}