actvity.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package activity
  2. const (
  3. //CancelState 取消活动
  4. CancelState = -1
  5. //JoinState 参加活动
  6. JoinState = 0
  7. )
  8. // Activity for activiy list.
  9. type Activity struct {
  10. ID int64 `json:"id"`
  11. Name string `json:"name"`
  12. Tags string `json:"tags"`
  13. Hot int8 `json:"hot"`
  14. ActURL string `json:"act_url"`
  15. Protocol string `json:"protocol"`
  16. Type int `json:"type"`
  17. New int8 `json:"new"`
  18. Comment string `json:"comment"`
  19. STime string `json:"stime"`
  20. }
  21. // Like for Like
  22. type Like struct {
  23. Count int `json:"count"`
  24. }
  25. // Subject for Subject
  26. type Subject struct {
  27. ID string `json:"id"`
  28. Name string `json:"name"`
  29. }
  30. // Protocol str
  31. type Protocol struct {
  32. ID string `json:"id"`
  33. Protocol string `json:"protocol"`
  34. Tags string `json:"tags"`
  35. Types string `json:"types"`
  36. }
  37. // ActWithTP str
  38. type ActWithTP struct {
  39. ID int64 `json:"id"`
  40. Name string `json:"name"`
  41. Tags string `json:"tags"`
  42. Types string `json:"types"`
  43. Hot int8 `json:"hot"`
  44. ActURL string `json:"act_url"`
  45. Protocol string `json:"protocol"`
  46. Type int `json:"type"`
  47. }