蛋蛋星球-客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
1.6 KiB

  1. package md
  2. type ConfigResp struct {
  3. Title string `json:"title" example:"软件使用协议标题"`
  4. Content string `json:"content" example:"软件使用协议内容"`
  5. UserTitle string `json:"user_title" example:"用户协议标题"`
  6. UserUrl string `json:"user_url" example:"用户协议链接"`
  7. PrivacyTitle string `json:"privacy_title" example:"隐私协议标题"`
  8. PrivacyUrl string `json:"privacy_url" example:"隐私协议链接"`
  9. OssUrl string `json:"oss_url" example:"阿里云图片链接"`
  10. Guide []Guide `json:"guide"`
  11. DownUrl string `json:"down_url"`
  12. DownViewUrl string `json:"down_view_url"`
  13. RegisterViewUrl string `json:"register_view_url"`
  14. DownWebOpen string `json:"down_web_open"`
  15. Seo Seo `json:"seo"`
  16. }
  17. type Seo struct {
  18. SeoTitle string `json:"seo_title" example:"seo"`
  19. SeoLogo string `json:"seo_logo"`
  20. WebLogo string `json:"web_logo"`
  21. }
  22. type VersionResp struct {
  23. Version []Version `json:"version"`
  24. IsAuditVersion string `json:"is_audit_version"`
  25. }
  26. type Version struct {
  27. Type string `json:"type"`
  28. Img string `json:"img"`
  29. Name string `json:"name"`
  30. Version string `json:"version"`
  31. Url string `json:"url"`
  32. Content string `json:"content"`
  33. IsMust string `json:"is_must"`
  34. DownType string `json:"down_type"`
  35. OutUrl string `json:"out_url"`
  36. }
  37. type Guide struct {
  38. BgImage string `json:"bg_image"`
  39. BgImageUrl string `json:"bg_image_url"`
  40. ContentImage string `json:"content_image"`
  41. ContentImageUrl string `json:"content_image_url"`
  42. }