|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package setCenter
-
- type WebBasicResp struct {
- SeoTitle string `json:"seo_title"`
- SeoLogo string `json:"seo_logo"`
- SeoLogoUrl string `json:"seo_logo_url"`
- WebLogo string `json:"web_logo"`
- WebLogoUrl string `json:"web_logo_url"`
- WapHost string `json:"wap_host" example:"h5域名"`
- AndroidDownUrl string `json:"android_down_url"`
- IosDownUrl string `json:"ios_down_url"`
- }
- type WebBasicReq struct {
- SeoTitle string `json:"seo_title"`
- SeoLogo string `json:"seo_logo"`
- WebLogo string `json:"web_logo"`
- WapHost string `json:"wap_host" example:"h5域名"`
- AndroidDownUrl string `json:"android_down_url"`
- IosDownUrl string `json:"ios_down_url"`
- }
- type KuaizhanBasicResp struct {
- KuaizhanUrl string `json:"kuaizhan_url"`
- }
- type KuaizhanBasicReq struct {
- KuaizhanUrl string `json:"kuaizhan_url"`
- }
- type WebDomainBasicReq struct {
- WebDomain []string `json:"web_domain"`
- DownWebOpen string `json:"down_web_open"`
- }
- type PicCodeBasicResp struct {
- PicCodeType string `json:"pic_code_type" example:"图形认证方式 0阿里云 1自有"`
- NumFilter string `json:"num_filter" example:"手机段屏蔽 多个逗号隔开"`
- }
- type PicCodeBasicReq struct {
- PicCodeType string `json:"pic_code_type"`
- NumFilter string `json:"num_filter"`
- }
- type BasicNoticeBasicResp struct {
- AppNoticeContent string `json:"app_notice_content" example:"公告内容"`
- AppNoticeVersion string `json:"app_notice_version" example:"当前版本 1 2 3 每次更新内容修改下"`
- AppNoticeType string `json:"app_notice_type" example:"弹窗次数 0仅一次 1每天 2永久"`
- AppNoticeShow string `json:"app_notice_show" example:"是否开启弹窗 0不弹 1弹"`
- }
- type BasicNoticeBasicReq struct {
- AppNoticeContent string `json:"app_notice_content"`
- AppNoticeVersion string `json:"app_notice_version" example:"版本 1 2 3"`
- AppNoticeType string `json:"app_notice_type" example:"0仅一次 1每天 2永久"`
- AppNoticeShow string `json:"app_notice_show" example:"0不弹 1弹"`
- }
|