-
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.
Merge pull request #164 from JokerTrickster/improvement/163/recommend…
…_api {improvement} - 요청 프로퍼티 수정 \n #163
- Loading branch information
Showing
11 changed files
with
150 additions
and
108 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
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package entity | ||
|
||
type SelectFoodEntity struct { | ||
Type string `json:"type"` | ||
Scenario string `json:"scenario"` | ||
Time string `json:"time"` | ||
Theme string `json:"theme"` | ||
Flavor string `json:"flavor"` | ||
Name string `json:"name"` | ||
UserID uint `json:"userID"` | ||
Types string `json:"types"` | ||
Scenarios string `json:"scenarios"` | ||
Times string `json:"times"` | ||
Themes string `json:"themes"` | ||
Flavors string `json:"flavors"` | ||
Name string `json:"name"` | ||
UserID uint `json:"userID"` | ||
} |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package request | ||
|
||
type ReqRecommendFood struct { | ||
Type string `json:"type" example:"한식"` | ||
Scenario string `json:"scenario" example:"혼밥"` | ||
Time string `json:"time" example:"점심"` | ||
Theme string `json:"theme" example:"스트레스 해소"` | ||
Flavor string `json:"flavor" example:"매운맛"` | ||
Types string `json:"types" example:"한식"` | ||
Scenarios string `json:"scenarios" example:"혼밥"` | ||
Times string `json:"times" example:"점심"` | ||
Themes string `json:"themes" example:"스트레스 해소"` | ||
Flavors string `json:"flavors" example:"매운맛"` | ||
PreviousAnswer string `json:"previousAnswer" example:"김치찌개 떡볶이 치킨"` | ||
} |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package request | ||
|
||
type ReqSelectFood struct { | ||
Type string `json:"type" example:"한식"` // 전체, 양식, 한식, 중식 등 | ||
Scenario string `json:"scenario" example:"혼밥"` // 전체 , 혼밥, 가족, 친구들 | ||
Time string `json:"time" example:"점심"` | ||
Theme string `json:"theme" example:"스트레스 해소"` | ||
Flavor string `json:"flavor" example:"매운맛"` | ||
Name string `json:"name" example:"된장찌개"` | ||
Types string `json:"types" example:"한식"` // 전체, 양식, 한식, 중식 등 | ||
Scenarios string `json:"scenarios" example:"혼밥"` // 전체 , 혼밥, 가족, 친구들 | ||
Times string `json:"times" example:"점심"` | ||
Themes string `json:"themes" example:"스트레스 해소"` | ||
Flavors string `json:"flavors" example:"매운맛"` | ||
Name string `json:"name" example:"된장찌개"` | ||
} |
Oops, something went wrong.