test #257

Merged
klaus merged 15 commits from test into main 2025-02-09 13:36:21 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit b1f82f9abe - Show all commits

View File

@ -28,7 +28,7 @@ class AudioContentMainTabHomeService(
.minusWeeks(1)
.with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY))
val endDate = startDate
.plusDays(7)
.plusDays(6)
val startDateFormatter = DateTimeFormatter.ofPattern("yyyy년 MM월 dd일")
val endDateFormatter = DateTimeFormatter.ofPattern("MM월 dd일")
@ -57,7 +57,7 @@ class AudioContentMainTabHomeService(
memberId = member.id!!,
isAdult = member.auth != null,
startDate = startDate.minusDays(1),
endDate = endDate.minusDays(1)
endDate = endDate
)
// 인기 콘텐츠
@ -65,7 +65,7 @@ class AudioContentMainTabHomeService(
memberId = member.id!!,
isAdult = member.auth != null,
startDate = startDate.minusDays(1),
endDate = endDate.minusDays(1)
endDate = endDate
)
// 이벤트 배너
@ -80,7 +80,7 @@ class AudioContentMainTabHomeService(
val contentRankCreatorList = rankingService.fetchCreatorByContentRevenueRankTop20(
memberId = member.id!!,
startDate = startDate.minusDays(1),
endDate = endDate.minusDays(1)
endDate = endDate
)
val salesRankContentList = if (contentRankCreatorList.isNotEmpty()) {