Skip to content

Commit

Permalink
Merge pull request #585 from nheo9143/feat/notidate-584
Browse files Browse the repository at this point in the history
[feat] 알림 날짜 변경 message close #584
  • Loading branch information
nheo9143 authored Mar 23, 2022
2 parents d5d4be4 + 0d795d7 commit 5e609c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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();
}
}

0 comments on commit 5e609c2

Please sign in to comment.