蛋蛋星球 后台端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
706 B

  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. }