시리즈 상세

- 대여가격 70% -> 60%로 수정
This commit is contained in:
Klaus 2024-04-30 18:39:08 +09:00
parent bbb193a787
commit 2acf723c86
1 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,8 @@ class ContentSeriesService(
val minMaxPrice = repository.getSeriesContentMinMaxPrice(seriesId = seriesId)
val minPrice = minMaxPrice.minPrice
val maxPrice = minMaxPrice.maxPrice
val rentalMinPrice = (minMaxPrice.minPrice * 0.7).toInt()
val rentalMaxPrice = (minMaxPrice.maxPrice * 0.7).toInt()
val rentalMinPrice = (minMaxPrice.minPrice * 0.6).toInt()
val rentalMaxPrice = (minMaxPrice.maxPrice * 0.6).toInt()
val seriesContentList = getSeriesContentList(seriesId = seriesId, member = member, offset = 0, limit = 5)