archive_stat.go 257 B

123456789101112
  1. package model
  2. // UpBaseStat for up base.
  3. type UpBaseStat struct {
  4. View int64 `json:"view"`
  5. Reply int64 `json:"reply"`
  6. Dm int64 `json:"dm"`
  7. Fans int64 `json:"fans"`
  8. Fav int64 `json:"fav"`
  9. Like int64 `json:"like"`
  10. Share int64 `json:"share"`
  11. }