Compare commits

...

2 Commits

View File

@@ -478,6 +478,7 @@ class AudioContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory)
.where(where) .where(where)
.groupBy(audioContent.id) .groupBy(audioContent.id)
.orderBy(order.can.sum().desc()) .orderBy(order.can.sum().desc())
.offset(offset)
.limit(limit) .limit(limit)
.fetch() .fetch()
} }