콘텐츠 대여가격

- 소장가격의 60% -> 70%로 변경
This commit is contained in:
2024-10-31 14:13:39 +09:00
parent baeea79e66
commit 8ea51774e6
2 changed files with 3 additions and 3 deletions

View File

@@ -73,8 +73,8 @@ class ContentSeriesService(
val minMaxPrice = repository.getSeriesContentMinMaxPrice(seriesId = seriesId)
val minPrice = minMaxPrice.minPrice
val maxPrice = minMaxPrice.maxPrice
val rentalMinPrice = (minMaxPrice.minPrice * 0.6).toInt()
val rentalMaxPrice = (minMaxPrice.maxPrice * 0.6).toInt()
val rentalMinPrice = (minMaxPrice.minPrice * 0.7).toInt()
val rentalMaxPrice = (minMaxPrice.maxPrice * 0.7).toInt()
val seriesContentList = getSeriesContentList(
seriesId = seriesId,