Skip to content

Commit

Permalink
Fix(MeetingGetResponseDto): 이름 반환값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightieey committed Nov 16, 2023
1 parent cf736fc commit cf343a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/kr/co/helloplum/dto/MeetingGetResponseDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
@Getter
@AllArgsConstructor
public class MeetingGetResponseDto {
private String id;
private String name;
private LocalDate startDate;
private LocalDate endDate;
Expand All @@ -21,6 +22,7 @@ public class MeetingGetResponseDto {
public static MeetingGetResponseDto of(Meeting meeting) {
return new MeetingGetResponseDto(
meeting.get_id(),
meeting.getName(),
meeting.getStartDate(),
meeting.getEndDate(),
meeting.getPlace(),
Expand Down

0 comments on commit cf343a9

Please sign in to comment.