File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/kotlin/site/billilge/api/backend/domain/rental/dto/response Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ data class DashboardResponse(
2828 val renterStudentId : String ,
2929 @field:Schema(description = "대여 상태", example = "PENDING ")
3030 val status : RentalStatus ,
31- @field:Schema(description = "신청일 ")
32- val applicatedAt : LocalDateTime
31+ @field:Schema(description = "대여 시각 ")
32+ val rentAt : LocalDateTime ? ,
3333 ) {
3434 companion object {
3535 @JvmStatic
@@ -42,7 +42,7 @@ data class DashboardResponse(
4242 renterName = rentalHistory.member.name,
4343 renterStudentId = rentalHistory.member.studentId,
4444 status = rentalHistory.rentalStatus,
45- applicatedAt = rentalHistory.applicatedAt
45+ rentAt = rentalHistory.rentAt
4646 )
4747 }
4848 }
You can’t perform that action at this time.
0 commit comments