콘텐츠 대여기간

- 15 -> 5일로 변경
This commit is contained in:
Klaus 2025-02-24 12:17:07 +09:00
parent 780088eb0c
commit d4318cc48c
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ data class Order(
override fun prePersist() {
super.prePersist()
if (type == OrderType.RENTAL) {
endDate = startDate.plusDays(15)
endDate = startDate.plusDays(5)
}
}
}