Skip to content

Commit

Permalink
Merge pull request #83 from Tea-Bliss/dev
Browse files Browse the repository at this point in the history
[fix] Review Dto 수정
  • Loading branch information
mun9659 authored Jun 22, 2024
2 parents f66f5df + a4ebba1 commit e82ec83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/store/teabliss/review/dto/ReviewDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class ReviewDto {

private String contents;

private Long like;
private Long likes;

private Member member;

Expand All @@ -41,7 +41,7 @@ public static ReviewDto of(Review review) {
.id(review.getId())
.title(review.getTitle())
.contents(review.getContents())
.like(review.getLikes())
.likes(review.getLikes())
.createDt(review.getCreateDt())
.updateDt((review.getUpdateDt()))
.build();
Expand Down

0 comments on commit e82ec83

Please sign in to comment.