Skip to content

Commit

Permalink
chore(team): add type of regional data (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaerim1001 authored Sep 23, 2023
1 parent 159f97e commit 24b9119
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/main/java/com/e2i/wemeet/domain/team/data/Region.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,19 @@ public enum Region {
HONGDAE(1, "홍대"),
GANGNAM(2, "강남"),
SINCHON(3, "신촌"),
GUNDAE(4, "건대입구");
GUNDAE(4, "건대입구"),
HYEHWA(5, "혜화"),
MYEONGDONG(6, "명동"),
SEOMYEON(7, "서면"),
HAEUNDAE(8, "해운대"),
BUPYEONG(9, "부평"),
ANYANG(10, "안양역"),
CHUNGJANGRO(11, "충장로"),
DAEJEON(12, "대전역"),
BANWOLDANG(13, "반월당"),
DUJEONG(14, "두정역"),
SUWON(15, "수원역");


private final int key;
private final String name;
Expand Down

0 comments on commit 24b9119

Please sign in to comment.