From 0bdcc440b78c2d23672968ea85d6f099cc094248 Mon Sep 17 00:00:00 2001 From: eastargh Date: Fri, 4 Sep 2026 11:29:31 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=95=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../data/entity/onl/inbound/error/InboundErrorInfoService.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/eactive/eai/rms/data/entity/onl/inbound/error/InboundErrorInfoService.java b/src/main/java/com/eactive/eai/rms/data/entity/onl/inbound/error/InboundErrorInfoService.java index f7c864e..08b286f 100644 --- a/src/main/java/com/eactive/eai/rms/data/entity/onl/inbound/error/InboundErrorInfoService.java +++ b/src/main/java/com/eactive/eai/rms/data/entity/onl/inbound/error/InboundErrorInfoService.java @@ -62,6 +62,8 @@ public class InboundErrorInfoService extends AbstractDataService list = query .select(qInboundErrorInfo) .orderBy(qInboundErrorInfo.erroccurhms.desc()) + .offset(pageable.getOffset()) + .limit(pageable.getPageSize()) .fetch(); return new PageImpl<>(list, pageable, totalCount);