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

md_web.go 2.0 KiB

3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. }
  20. type KuaizhanBasicResp struct {
  21. KuaizhanUrl string `json:"kuaizhan_url"`
  22. }
  23. type KuaizhanBasicReq struct {
  24. KuaizhanUrl string `json:"kuaizhan_url"`
  25. }
  26. type WebDomainBasicReq struct {
  27. WebDomain []string `json:"web_domain"`
  28. DownWebOpen string `json:"down_web_open"`
  29. }
  30. type PicCodeBasicResp struct {
  31. PicCodeType string `json:"pic_code_type" example:"图形认证方式 0阿里云 1自有"`
  32. NumFilter string `json:"num_filter" example:"手机段屏蔽 多个逗号隔开"`
  33. }
  34. type PicCodeBasicReq struct {
  35. PicCodeType string `json:"pic_code_type"`
  36. NumFilter string `json:"num_filter"`
  37. }
  38. type BasicNoticeBasicResp struct {
  39. AppNoticeContent string `json:"app_notice_content" example:"公告内容"`
  40. AppNoticeVersion string `json:"app_notice_version" example:"当前版本 1 2 3 每次更新内容修改下"`
  41. AppNoticeType string `json:"app_notice_type" example:"弹窗次数 0仅一次 1每天 2永久"`
  42. AppNoticeShow string `json:"app_notice_show" example:"是否开启弹窗 0不弹 1弹"`
  43. }
  44. type BasicNoticeBasicReq struct {
  45. AppNoticeContent string `json:"app_notice_content"`
  46. AppNoticeVersion string `json:"app_notice_version" example:"版本 1 2 3"`
  47. AppNoticeType string `json:"app_notice_type" example:"0仅一次 1每天 2永久"`
  48. AppNoticeShow string `json:"app_notice_show" example:"0不弹 1弹"`
  49. }