Skip to content

Commit

Permalink
fix: createdDate 오타수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dltjdgh0428 committed Mar 28, 2024
1 parent 7a7466c commit 1d15ecb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/book_everywhere/data/dto/AllDataDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class AllDataDto {
private BookRespDto bookRespDto;
private List<TagRespDto> tags;
private String content;
private LocalDateTime createDate;
private LocalDateTime createdDate;

}

2 changes: 1 addition & 1 deletion src/main/java/com/book_everywhere/pin/dto/PinDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class PinDto {
private String title;
private String address;
private String url;
private LocalDateTime createDate;
private LocalDateTime createdDate;

public Pin toEntity() {
return Pin.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class PinWithTagCountRespDto {
private String title;
private String address;
private String url;
private LocalDateTime createDate;
private LocalDateTime createdDate;
private List<TagCountRespDto> tagCountRespDtos;

public static PinWithTagCountRespDto toDto(Pin pin, List<TagCountRespDto> tagCountRespDtos) {
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/book_everywhere/tag/dto/TaggedDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import lombok.NoArgsConstructor;

import java.sql.Timestamp;
import java.time.LocalDateTime;

@Data
@NoArgsConstructor
Expand All @@ -13,5 +14,5 @@ public class TaggedDto {
private Long pinId;
private String tagName;
private int count;
private Timestamp createAt;
private LocalDateTime createdDate;
}

0 comments on commit 1d15ecb

Please sign in to comment.