public.go 1.3 KB

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