Merge branch 'develop' of gitee.com:fusenpack/fusenapi into develop
This commit is contained in:
@@ -39,6 +39,14 @@ service info {
|
||||
|
||||
@handler RestaurantListHandler
|
||||
get /api/info/restaurant/list(request) returns (response);
|
||||
|
||||
// 搜索建议
|
||||
@handler PreLogoSearchSuggestionsHandler
|
||||
post /api/info/prelogo/search/suggestions(PreLogoSearchRequest) returns (response);
|
||||
|
||||
// 搜索
|
||||
@handler PreLogoSearchHandler
|
||||
post /api/info/prelogo/search(PreLogoSearchRequest) returns (response);
|
||||
|
||||
@handler ContactUsHandler
|
||||
post /api/info/contact/us(ContactUsRequest) returns (response);
|
||||
@@ -51,6 +59,12 @@ type (
|
||||
Phone string `json:"phone"`
|
||||
Message string `json:"message"`
|
||||
}
|
||||
|
||||
|
||||
PreLogoSearchRequest {
|
||||
ZipCode string `json:"zip_code"` // 邮编
|
||||
Keywords int64 `json:"keywords"` // 关键字
|
||||
}
|
||||
|
||||
UserInfoRequest {
|
||||
Module []string `json:"module"`
|
||||
|
||||
Reference in New Issue
Block a user