From 296459d38a7ca24adb526748a5d5a8a196b4144a Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Wed, 3 Dec 2025 13:55:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A8=E9=87=8F=E4=B8=80=E8=87=B4=E6=80=A7?= =?UTF-8?q?=E6=A0=B8=E6=9F=A5=E9=BB=98=E8=AE=A4=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/QC/QCListService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/QC/QCListService.cs b/IRaCIS.Core.Application/Service/QC/QCListService.cs index e1ba9fcac..26ff00d8f 100644 --- a/IRaCIS.Core.Application/Service/QC/QCListService.cs +++ b/IRaCIS.Core.Application/Service/QC/QCListService.cs @@ -772,7 +772,7 @@ namespace IRaCIS.Core.Application.Image.QA var query = _inspectionFileRepository.Where(t => t.TrialId == inQuery.TrialId && (t.CheckState == EDCCheckState.Success || t.CheckState == EDCCheckState.Failed)) .ProjectTo(_mapper.ConfigurationProvider); - return await query.ToPagedListAsync(inQuery); + return await query.ToPagedListAsync(inQuery,nameof(GetUserUploadFileDto.CreateTime)); }