|
@@ -70,12 +70,12 @@ func GetHotSearch() (permission string, err error) {
|
|
|
}
|
|
|
|
|
|
type HomeHeaderTabList struct {
|
|
|
- Home []*HomeHeaderTab `json:"home" description:"首页"`
|
|
|
- SearchPage []*HomeHeaderTab `json:"search_page" description:"搜索页"`
|
|
|
+ Home []*HomeHeaderTab `description:"首页"`
|
|
|
+ SearchPage []*HomeHeaderTab `description:"搜索页"`
|
|
|
}
|
|
|
|
|
|
type HomeHeaderTab struct {
|
|
|
- Id int `json:"id" description:"导航ID"`
|
|
|
- Name string `json:"name" description:"导航名称"`
|
|
|
- IsShow bool `json:"is_show" description:"是否展示"`
|
|
|
+ Id int `description:"导航ID"`
|
|
|
+ Name string `description:"导航名称"`
|
|
|
+ IsShow bool `description:"是否展示"`
|
|
|
}
|