페이징 버그 수정

This commit is contained in:
eastargh
2026-09-04 11:29:31 +09:00
parent a1d7f8f10e
commit 0bdcc440b7
@@ -62,6 +62,8 @@ public class InboundErrorInfoService extends AbstractDataService<InboundErrorInf
List<InboundErrorInfo> list = query
.select(qInboundErrorInfo)
.orderBy(qInboundErrorInfo.erroccurhms.desc())
.offset(pageable.getOffset())
.limit(pageable.getPageSize())
.fetch();
return new PageImpl<>(list, pageable, totalCount);