reply.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package reply
  2. import (
  3. "go-common/app/interface/main/reply/model/reply"
  4. xtime "go-common/library/time"
  5. )
  6. // Reply str
  7. type Reply struct {
  8. RpID int64 `json:"rpid"`
  9. Oid int64 `json:"oid"`
  10. Type int8 `json:"type"`
  11. Mid int64 `json:"mid"`
  12. Root int64 `json:"root"`
  13. Parent int64 `json:"parent"`
  14. Count int `json:"count"`
  15. RCount int `json:"rcount"`
  16. Floor int `json:"floor"`
  17. State int8 `json:"state"`
  18. Attr int8 `json:"attr"`
  19. CTime xtime.Time `json:"ctime"`
  20. MTime xtime.Time `json:"-"`
  21. RpIDStr string `json:"rpid_str,omitempty"`
  22. RootStr string `json:"root_str,omitempty"`
  23. ParentStr string `json:"parent_str,omitempty"`
  24. // action count, from ReplyAction count
  25. Like int `json:"like"`
  26. Hate int `json:"-"`
  27. Action int8 `json:"action"`
  28. // member info
  29. Member *reply.Info `json:"member"`
  30. // other
  31. Content *CreativeReplyCont `json:"content"`
  32. Replies []*Reply `json:"replies"`
  33. }
  34. // CreativeReplyCont str
  35. type CreativeReplyCont struct {
  36. RpID int64 `json:"-"`
  37. Message string `json:"message"`
  38. Ats Ints `json:"ats,omitempty"`
  39. IP uint32 `json:"ipi,omitempty"`
  40. Plat int8 `json:"plat"`
  41. Device string `json:"device"`
  42. Version string `json:"version,omitempty"`
  43. CTime xtime.Time `json:"-"`
  44. MTime xtime.Time `json:"-"`
  45. // ats member info
  46. Members []*reply.Info `json:"members"`
  47. }