(크리에이터)관리자 커뮤니티 게시물 정산 #185

Merged
klaus merged 1 commits from test into main 2024-05-28 16:54:44 +00:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 04f757a08c - Show all commits

View File

@ -200,6 +200,8 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
)
.groupBy(formattedDate, creatorCommunity.id)
.orderBy(member.id.asc(), formattedDate.desc())
.offset(offset)
.limit(limit)
.fetch()
}
}

View File

@ -289,6 +289,8 @@ class CreatorAdminCalculateQueryRepository(private val queryFactory: JPAQueryFac
)
.groupBy(formattedDate, creatorCommunity.id)
.orderBy(member.id.asc(), formattedDate.desc())
.offset(offset)
.limit(limit)
.fetch()
}
}