대여기간 - 15일로 변경

This commit is contained in:
2023-10-20 18:25:42 +09:00
parent ae6171e844
commit 04c682fc9b

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)
}
}
}