feedback.go 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package feedback
  2. import "go-common/library/time"
  3. // Feedback feedback session.
  4. type Feedback struct {
  5. Session *Session `json:"session"`
  6. Tag *Tag `json:"tag"`
  7. }
  8. // Reply feedback reply.
  9. type Reply struct {
  10. ReplyID string `json:"reply_id"`
  11. Type int8 `json:"type"`
  12. Content string `json:"content"`
  13. ImgURL string `json:"img_url"`
  14. CTime time.Time `json:"ctime"`
  15. }
  16. // Tag feedback tags.
  17. type Tag struct {
  18. ID int64 `json:"id"`
  19. Name string `json:"name"`
  20. Platform string `json:"-"`
  21. }
  22. // Session for Feedback.
  23. type Session struct {
  24. SessionID int64 `json:"id"`
  25. Content string `json:"content"`
  26. ImgURL string `json:"img_url"`
  27. State int8 `json:"state"`
  28. CTime time.Time `json:"ctime"`
  29. }
  30. // TagList list tag.
  31. type TagList struct {
  32. Platforms []*Platform `json:"platforms"`
  33. Limit int `json:"limit"`
  34. }
  35. // Platform for tag info.
  36. type Platform struct {
  37. EN string `json:"en"`
  38. ZH string `json:"zh"`
  39. Tags []*Tag `json:"tags"`
  40. }