-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#27] [feat] 여행지 목록에 overview 추가 및 카테고리별 검색 추가
- Loading branch information
Showing
6 changed files
with
128 additions
and
36 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
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
22 changes: 22 additions & 0 deletions
22
src/main/java/com/tripmate/integration/tourapi/domain/SpotContentType.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,22 @@ | ||
package com.tripmate.integration.tourapi.domain; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public enum SpotContentType { | ||
|
||
TOURIST_ATTRACTIVENESS("12", "관광지"), | ||
CULTURAL_FACILITY("14", "문화시설"), | ||
FESTIVAL_AND_PERFORMANCE("15", "축제/공연/행사"), | ||
TRIP_ITINERARY("25", "여행코스"), | ||
LEISURE_SPORTS("28", "레포츠"), | ||
ACCOMMODATION("32", "숙박"), | ||
SHOPPING("38", "쇼핑"), | ||
FOOD("39", "음식"); | ||
|
||
private final String contentId; | ||
|
||
private final String name; | ||
} |
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