Skip to content

Commit

Permalink
Merge pull request #147 from Bamdoliro/perf/#146
Browse files Browse the repository at this point in the history
[개선] 공지사항 조회시 수정일이 나오도록 변경
  • Loading branch information
jyj1289 authored Oct 10, 2024
2 parents d207356 + 3915e35 commit 7b0e055
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ public class NoticeSimpleResponse {

private final Long id;
private final String title;
private final LocalDateTime createdAt;
private final LocalDateTime updatedAt;

public NoticeSimpleResponse(Notice notice) {
this.id = notice.getId();
this.title = notice.getTitle();
this.createdAt = notice.getCreatedAt();
this.updatedAt = notice.getUpdatedAt();
}
}

0 comments on commit 7b0e055

Please sign in to comment.