Browse Source

Merge branch 'cygx/7.6' into debug

hsun 2 years ago
parent
commit
b7ab3d134f
1 changed files with 5 additions and 5 deletions
  1. 5 5
      models/config.go

+ 5 - 5
models/config.go

@@ -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:"是否展示"`
 }