蛋蛋星球 后台端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

md_website.go 706 B

1234567891011121314151617
  1. package md
  2. type WebsiteInfoResp struct {
  3. SeoTitle string `json:"seo_title" example:"seo"`
  4. SeoLogo string `json:"seo_logo"`
  5. WebLogo string `json:"web_logo"`
  6. AndroidDownUrl string `json:"android_down_url"`
  7. IosDownUrl string `json:"ios_down_url"`
  8. }
  9. type GetModuleSettingResp struct {
  10. ModName string `json:"mod_name"` // 模块名称
  11. Position string `json:"position"` // 位置
  12. SkipIdentifier string `json:"skip_identifier"` // 跳转标识
  13. Title string `json:"title"` // 标题
  14. Subtitle string `json:"subtitle"` // 副标题
  15. Data interface{} `json:"data"` // 内容
  16. }