-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from 28th-meetup/feat/menuFilter
feat: 카테고리 내에서 메뉴 정렬
- Loading branch information
Showing
3 changed files
with
54 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/main/java/com/kusitms/jipbap/food/dto/SortingType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.kusitms.jipbap.food.dto; | ||
|
||
public enum SortingType { | ||
RECOMMENDED, //추천순 | ||
REVIEW_HIGH, //후기많순 | ||
RATING_HIGH, //평점높은순 | ||
PRICE_HIGH, //가격높은순 | ||
PRICE_LOW, //가격낮은순 | ||
RECENTLY_ADDED //최근 추가된 메뉴순 | ||
} |