콘텐츠 대여기간 #273

Merged
klaus merged 2 commits from test into main 2025-02-25 14:02:18 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit d4318cc48c - Show all commits

View File

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