diff --git a/src/main/java/com/bamdoliro/maru/presentation/notice/dto/response/NoticeSimpleResponse.java b/src/main/java/com/bamdoliro/maru/presentation/notice/dto/response/NoticeSimpleResponse.java index c31a6d70..3fd48f34 100644 --- a/src/main/java/com/bamdoliro/maru/presentation/notice/dto/response/NoticeSimpleResponse.java +++ b/src/main/java/com/bamdoliro/maru/presentation/notice/dto/response/NoticeSimpleResponse.java @@ -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(); } }