蛋蛋星球 后台端
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.
 
 
 
 

21 regels
722 B

  1. package setCenter
  2. type WebBasicResp struct {
  3. SeoTitle string `json:"seo_title"`
  4. SeoLogo string `json:"seo_logo"`
  5. SeoLogoUrl string `json:"seo_logo_url"`
  6. WebLogo string `json:"web_logo"`
  7. WebLogoUrl string `json:"web_logo_url"`
  8. WapHost string `json:"wap_host" example:"h5域名"`
  9. AndroidDownUrl string `json:"android_down_url"`
  10. IosDownUrl string `json:"ios_down_url"`
  11. }
  12. type WebBasicReq struct {
  13. SeoTitle string `json:"seo_title"`
  14. SeoLogo string `json:"seo_logo"`
  15. WebLogo string `json:"web_logo"`
  16. WapHost string `json:"wap_host" example:"h5域名"`
  17. AndroidDownUrl string `json:"android_down_url"`
  18. IosDownUrl string `json:"ios_down_url"`
  19. }