package vo // TypeItem // @description: 导航分类 type TypeItem struct { ID string `json:"id"` Name string `json:"name"` Icon string `json:"icon"` } type NavigationItem struct { ID string `json:"id"` Title string `json:"title"` Url string `json:"url"` Icon string `json:"icon"` Desc string `json:"desc"` Enabled bool `json:"enabled"` }