蛋蛋星球-客户端
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 

39 рядки
1.3 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. Seo Seo `json:"seo"`
  13. }
  14. type Seo struct {
  15. SeoTitle string `json:"seo_title" example:"seo"`
  16. SeoLogo string `json:"seo_logo"`
  17. WebLogo string `json:"web_logo"`
  18. }
  19. type VersionResp struct {
  20. Version []Version `json:"version"`
  21. IsAuditVersion string `json:"is_audit_version"`
  22. }
  23. type Version struct {
  24. Type string `json:"type"`
  25. Img string `json:"img"`
  26. Name string `json:"name"`
  27. Version string `json:"version"`
  28. Url string `json:"url"`
  29. Content string `json:"content"`
  30. IsMust string `json:"is_must"`
  31. }
  32. type Guide struct {
  33. BgImage string `json:"bg_image"`
  34. BgImageUrl string `json:"bg_image_url"`
  35. ContentImage string `json:"content_image"`
  36. ContentImageUrl string `json:"content_image_url"`
  37. }