Skip to content

Commit

Permalink
feat: 야간잔류 신청 Response DTO에 id 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
holyPigeon committed Dec 4, 2024
1 parent 4528ef2 commit 9f5c128
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
@Getter
@Builder
public class ApplicationResponse {
private Long id;
private LocalDateTime startTime; // 시작 시간
private LocalDateTime endTime; // 종료 시간
private LocalDate appliedDate; // 날짜
Expand All @@ -28,6 +29,7 @@ public static ApplicationResponse fromEntity(Application application, List<Membe
.toList();

return ApplicationResponse.builder()
.id(application.getId())
.startTime(application.getStartTime()) // 시작 시간
.endTime(application.getEndTime()) // 종료 시간
.appliedDate(application.getAppliedDate()) // 날짜
Expand Down

0 comments on commit 9f5c128

Please sign in to comment.