public.go 1.1 KB

1234567891011121314151617181920212223242526272829
  1. package request
  2. type RddpReportShareImgReq struct {
  3. Source string `description:"来源" json:"source"`
  4. Pars string `description:"动态信息-JSON格式" json:"pars"`
  5. }
  6. type WechatWarningReq struct {
  7. Content string `description:"预警信息" json:"content"`
  8. }
  9. // ViewLogUpdateReq 更新访问日志请求体
  10. type ViewLogUpdateReq struct {
  11. Id int `json:"id" description:"日志ID"`
  12. StopSeconds int `json:"stop_seconds" description:"访问时长"`
  13. Source int `json:"source" description:"来源:1-问答社区; 2-语音播报; 3-视频社区; 4-路演视频..."`
  14. }
  15. type ReportChapterSetReq struct {
  16. TypeId uint64 `json:"type_id"`
  17. IsClose uint64 `json:"is_close" description:"是否关闭:1,关闭,0:不关闭"`
  18. }
  19. type BannerMarkReq struct {
  20. BannerUrl string `json:"banner_url"`
  21. FirstSource int `json:"first_source" description:"一级来源 1小程序移动 2小程序pc 3研报官网"`
  22. SecondSource int `json:"second_source" description:"二级来源 1首页 2研报详情页"`
  23. Id int `json:"id" description:"banner id"`
  24. }