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);