콘텐츠 누적 매출 API 추가 #79

Merged
klaus merged 4 commits from test into main 2023-11-13 13:42:18 +00:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit e3a31f16bc - Show all commits

View File

@ -117,6 +117,8 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
.innerJoin(order.audioContent, audioContent)
.innerJoin(audioContent.member, member)
.groupBy(member.id, audioContent.id, order.can)
.offset(offset)
.limit(limit)
.orderBy(member.id.desc(), audioContent.id.asc())
.fetch()
}