article.go 537 B

1234567891011121314151617181920
  1. package model
  2. // UpArtStat struct.
  3. type UpArtStat struct {
  4. View int64 `json:"view"`
  5. Reply int64 `json:"reply"`
  6. Like int64 `json:"like"`
  7. Coin int64 `json:"coin"`
  8. Fav int64 `json:"fav"`
  9. PreView int64 `json:"-"`
  10. PreReply int64 `json:"-"`
  11. PreLike int64 `json:"-"`
  12. PreCoin int64 `json:"-"`
  13. PreFav int64 `json:"-"`
  14. IncrView int64 `json:"incr_view"`
  15. IncrReply int64 `json:"incr_reply"`
  16. IncrLike int64 `json:"incr_like"`
  17. IncrCoin int64 `json:"incr_coin"`
  18. IncrFav int64 `json:"incr_fav"`
  19. }