콘텐츠 메인 시리즈 탭 - 완결 시리즈

- 완결시리즈 전체 보여주기
- 정렬 - 월별 판매량 순
This commit is contained in:
2025-02-19 02:20:10 +09:00
parent 000fb7c941
commit 7041aff350
3 changed files with 11 additions and 25 deletions

View File

@@ -84,15 +84,11 @@ class RankingService(
fun getCompleteSeriesRankingTotalCount(
memberId: Long,
isAdult: Boolean,
startDate: LocalDateTime,
endDate: LocalDateTime
isAdult: Boolean
): Int {
return repository.getCompleteSeriesRankingTotalCount(
memberId = memberId,
isAdult = isAdult,
startDate = startDate,
endDate = endDate
isAdult = isAdult
)
}