관리자 일자별 콘텐츠 후원 정산 - 크리에이터 순으로 정렬

This commit is contained in:
2023-11-14 18:17:42 +09:00
parent 481f2e1126
commit 9448c6a488

View File

@@ -153,7 +153,7 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
.and(useCan.createdAt.loe(endDate))
)
.groupBy(donationFormattedDate, audioContent.id)
.orderBy(donationFormattedDate.desc())
.orderBy(member.id.asc(), donationFormattedDate.desc())
.fetch()
}
}