public.go 740 B

12345678910111213141516171819202122
  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. }