stats.go 397 B

12345678910111213141516171819
  1. package archive
  2. import "time"
  3. // StatsPoint points struct for stats
  4. type StatsPoint struct {
  5. ID int64 `json:"id"`
  6. Type int8 `json:"type"`
  7. Content string `json:"content"`
  8. Ctime time.Time `json:"ctime"`
  9. Mtime time.Time `json:"mtime"`
  10. }
  11. // ArcStayCount .
  12. type ArcStayCount struct {
  13. Round int8 `json:"round"`
  14. State int8 `json:"state"`
  15. Count int64 `json:"count"`
  16. }