Skip to content

Commit 66fa2df

Browse files
authored
feat: 식단 추가 api에 FACULTY enum추가 (#206)
1 parent 187cc78 commit 66fa2df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/ssu/eatssu/domain/restaurant/entity/Restaurant.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ public enum Restaurant {
1414
DORMITORY("DORMITORY", 5500),
1515
FOOD_COURT("FOOD_COURT", null),
1616
SNACK_CORNER("SNACK_CORNER", null),
17-
HAKSIK("HAKSIK", 5000);
17+
HAKSIK("HAKSIK", 5000),
18+
FACULTY("FACULTY",null);
1819

1920
private final String restaurantName;
2021
private final Integer restaurantPrice;

0 commit comments

Comments
 (0)