reply.go 930 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package model
  2. // ReplyHistory reply history
  3. type ReplyHistory struct {
  4. Page struct {
  5. Num int `json:"num"`
  6. Size int `json:"size"`
  7. Total int `json:"total"`
  8. } `json:"page"`
  9. Records []*Record `json:"records"`
  10. }
  11. // Record record
  12. type Record struct {
  13. ID int `json:"id"`
  14. Oid int64 `json:"oid"`
  15. OidStr string `json:"oid_str"` // oid 前端会溢出改用 string
  16. Type int64 `json:"type"`
  17. Floor int `json:"floor"`
  18. Like int `json:"like"`
  19. Rcount int `json:"rcount"`
  20. Mid int64 `json:"mid"`
  21. State int `json:"state"`
  22. Message string `json:"message"`
  23. Ctime string `json:"ctime"`
  24. Members []*Member `json:"members"`
  25. RecordAppend
  26. }
  27. // RecordAppend record append
  28. type RecordAppend struct {
  29. Title string `json:"title"`
  30. URL string `json:"url"`
  31. }
  32. // Member member
  33. type Member struct {
  34. Mid int64 `json:"mid"`
  35. Uname string `json:"uname"`
  36. }