오디션 지원 리스트

- 페이징 적용
This commit is contained in:
Klaus 2025-01-03 08:04:58 +09:00
parent 80841fe543
commit 460196dc4d
1 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,8 @@ class AuditionApplicantQueryRepositoryImpl(
) )
.groupBy(auditionApplicant.id) .groupBy(auditionApplicant.id)
.orderBy(orderBy) .orderBy(orderBy)
.offset(offset)
.limit(limit)
.fetch() .fetch()
} }