후원랭킹 전체보기 API 추가
This commit is contained in:
parent
00a6fa0c91
commit
ad66be3449
|
@ -237,7 +237,7 @@ class ExplorerService(
|
||||||
isNotification = isNotification,
|
isNotification = isNotification,
|
||||||
notificationRecipientCount = notificationRecipientCount
|
notificationRecipientCount = notificationRecipientCount
|
||||||
),
|
),
|
||||||
memberDonationRanking = memberDonationRanking,
|
userDonationRanking = memberDonationRanking,
|
||||||
similarCreatorList = similarCreatorList,
|
similarCreatorList = similarCreatorList,
|
||||||
liveRoomList = liveRoomList,
|
liveRoomList = liveRoomList,
|
||||||
contentList = contentList,
|
contentList = contentList,
|
||||||
|
@ -291,7 +291,7 @@ class ExplorerService(
|
||||||
0
|
0
|
||||||
},
|
},
|
||||||
totalCount = queryRepository.getMemberDonationRankingTotal(creatorId),
|
totalCount = queryRepository.getMemberDonationRankingTotal(creatorId),
|
||||||
memberDonationRanking = queryRepository.getMemberDonationRanking(
|
userDonationRanking = queryRepository.getMemberDonationRanking(
|
||||||
creatorId,
|
creatorId,
|
||||||
offset = pageable.offset,
|
offset = pageable.offset,
|
||||||
limit = pageable.pageSize.toLong(),
|
limit = pageable.pageSize.toLong(),
|
||||||
|
|
|
@ -5,7 +5,7 @@ data class GetDonationAllResponse(
|
||||||
val accumulatedCansLastWeek: Int,
|
val accumulatedCansLastWeek: Int,
|
||||||
val accumulatedCansThisMonth: Int,
|
val accumulatedCansThisMonth: Int,
|
||||||
val totalCount: Int,
|
val totalCount: Int,
|
||||||
val memberDonationRanking: List<MemberDonationRankingResponse>
|
val userDonationRanking: List<MemberDonationRankingResponse>
|
||||||
)
|
)
|
||||||
|
|
||||||
data class MemberDonationRankingResponse(
|
data class MemberDonationRankingResponse(
|
||||||
|
|
Loading…
Reference in New Issue