Skip to content

Commit

Permalink
fix: #56 학식 리뷰 응답값에 카테고리 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
dldmsql committed Nov 11, 2023
1 parent 04c58fd commit a50ada7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public record ReviewPaging(
Long reviewIdx,
String restaurantName,
String mealType,
String mealCategory,
int grade,
String content,
List<String> imageList,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public ReviewGetRes getReviewWithNoOffSetPaging(Long cursorIdx, Long mealIdx, in
new ReviewPaging(
vo.getIdx(),
vo.getMeal().getRestaurant().getName(),
vo.getMeal().getMealType().name(),
vo.getMeal().getMealType().getValue(),
vo.getMeal().getCategory().getValue(),
vo.getGrade(),
vo.getContent(),
strImgList,
Expand Down

0 comments on commit a50ada7

Please sign in to comment.