operation.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package operation
  2. // Operation tool.
  3. type Operation struct {
  4. ID int64 `json:"id"`
  5. Ty string `json:"-"`
  6. Rank string `json:"rank"`
  7. Pic string `json:"pic"`
  8. Link string `json:"link"`
  9. Content string `json:"content"`
  10. Remark string `json:"remark"`
  11. Note string `json:"note"`
  12. Stime string `json:"start_time"`
  13. Etime string `json:"end_time"`
  14. AppPic string `json:"-"`
  15. Platform int8 `json:"-"`
  16. }
  17. // Banner for app index.
  18. type Banner struct {
  19. Ty string `json:"-"`
  20. Rank string `json:"rank"`
  21. Pic string `json:"pic"`
  22. Link string `json:"link"`
  23. Content string `json:"content"`
  24. }
  25. // BannerCreator for creator index.
  26. type BannerCreator struct {
  27. Ty string `json:"-"`
  28. Rank int `json:"rank"`
  29. Pic string `json:"pic"`
  30. Link string `json:"link"`
  31. Content string `json:"content"`
  32. Stime int64 `json:"start_time"`
  33. Etime int64 `json:"end_time"`
  34. }
  35. // BannerList for operation list.
  36. type BannerList struct {
  37. BannerCreator []*BannerCreator `json:"operations"`
  38. Pn int `json:"pn"`
  39. Ps int `json:"ps"`
  40. Total int `json:"total"`
  41. }
  42. // FullTypes get full operations.
  43. func FullTypes() (tys []string) {
  44. return []string{"'play'", "'notice'", "'road'", "'creative'", "'collect_arc'"}
  45. }