diff --git a/server/api/src/main/java/com/blind/api/domain/notification/DTO/NotiDTO.java b/server/api/src/main/java/com/blind/api/domain/notification/DTO/NotiDTO.java index 1833a6a..408d848 100644 --- a/server/api/src/main/java/com/blind/api/domain/notification/DTO/NotiDTO.java +++ b/server/api/src/main/java/com/blind/api/domain/notification/DTO/NotiDTO.java @@ -15,7 +15,7 @@ public class NotiDTO { private String title; private String content; private Boolean isChecked; - private LocalDateTime modifiedDate; + private LocalDateTime createdDate; public NotiDTO(Noti noti) { this.id = noti.getId(); @@ -24,6 +24,6 @@ public NotiDTO(Noti noti) { this.title = noti.getTitle(); this.content = noti.getContent(); this.isChecked = noti.getIsChecked(); - this.modifiedDate = noti.getModifiedDate(); + this.createdDate = noti.getCreatedDate(); } }