public.go 588 B

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