bnj.go 624 B

1234567891011121314151617181920212223242526272829
  1. package model
  2. // Spam .
  3. const (
  4. SpamBlack = 52001
  5. SpamOverflow = 52002
  6. SpamRestrict = 52005
  7. LiveDanmuMsgTypeNormal = 0
  8. )
  9. // LiveDanmu .
  10. type LiveDanmu struct {
  11. RoomID int64 `json:"room_id"`
  12. UID int64 `json:"uid"`
  13. UName string `json:"uname"`
  14. UserLevel int32 `json:"user_level"`
  15. Color int32 `json:"color"`
  16. Content string `json:"content"`
  17. Time int64 `json:"time"`
  18. MsgType int32 `json:"msg_type"`
  19. }
  20. // BnjLiveConfig .
  21. type BnjLiveConfig struct {
  22. DanmuDtarTime string `json:"danmu_start_time"`
  23. CommentID int64 `json:"comment_id"`
  24. RoomID int64 `json:"room_id"`
  25. }