activity.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // CActivity creative activity
  6. type CActivity struct {
  7. ID int64 `json:"id"`
  8. Name string `json:"name"`
  9. SignedStart time.Time `json:"-"`
  10. SignedEnd time.Time `json:"-"`
  11. SignUpStart time.Time `json:"-"`
  12. SignUpEnd time.Time `json:"-"`
  13. SignUp int `json:"sign_up"`
  14. SignUpState int `json:"sign_up_state"` // 0可以报名,1已报名,2已获奖,3不能报名
  15. WinType int `json:"win_type"`
  16. ProgressStart time.Time `json:"-"`
  17. ProgressEnd time.Time `json:"-"`
  18. ProgressState int `json:"progress_state"` // 展示状态 0不展示 1展示
  19. ProgressSync int `json:"progress_sync"`
  20. UpdatePage int `json:"-"`
  21. BonusQuery int `json:"bonus_query"`
  22. BonusQueryStart time.Time `json:"-"`
  23. BonusQueryEnd time.Time `json:"-"`
  24. Background string `json:"background"`
  25. WinDesc string `json:"win_desc"`
  26. UnwinDesc string `json:"unwin_desc"`
  27. Details string `json:"details"`
  28. Enrollment int `json:"enrollment"`
  29. WinNum int `json:"win_num"`
  30. Ranking []*ActUpInfo `json:"ranking"`
  31. }
  32. // UpBonus up bonus
  33. type UpBonus struct {
  34. MID int64
  35. ActivityID int64
  36. Nickname string
  37. Rank int
  38. State int
  39. SignUpTime time.Time
  40. }