Skip to content

Commit

Permalink
UPDATE: createdAt 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sunwupark committed Nov 21, 2023
1 parent 34c033f commit fc1e928
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class FindByCategoryResponseDto {
private Long id;
private String title;
private LocalDateTime creatdAt;
private LocalDateTime createdAt;
private String imageUrl;
private String dong;
}
2 changes: 1 addition & 1 deletion src/main/java/com/server/mappin/service/LostService.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public FindByCategoryListResponseDto findByCategory(String categoryName) {
.losts(losts.stream().map(lost -> FindByCategoryResponseDto.builder()
.id(lost.getId())
.title(lost.getTitle())
.creatdAt(lost.getCreatedAt())
.createdAt(lost.getCreatedAt())
.imageUrl(lost.getImageUrl())
.dong(lost.getLocation().getDong())
.build())
Expand Down

0 comments on commit fc1e928

Please sign in to comment.