Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- package md
-
- type WebsiteInfoResp struct {
- SeoTitle string `json:"seo_title" example:"seo"`
- SeoLogo string `json:"seo_logo"`
- WebLogo string `json:"web_logo"`
- AndroidDownUrl string `json:"android_down_url"`
- IosDownUrl string `json:"ios_down_url"`
- }
- type GetModuleSettingResp struct {
- ModName string `json:"mod_name"` // 模块名称
- Position string `json:"position"` // 位置
- SkipIdentifier string `json:"skip_identifier"` // 跳转标识
- Title string `json:"title"` // 标题
- Subtitle string `json:"subtitle"` // 副标题
- Data interface{} `json:"data"` // 内容
- }
|