대여기간 - 15일로 변경

This commit is contained in:
Klaus 2023-10-20 18:25:42 +09:00
parent ae6171e844
commit 04c682fc9b
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(7)
endDate = startDate.plusDays(15)
}
}
}