upload.go 491 B

12345678910111213141516171819202122232425
  1. package model
  2. // ArchiveInfo archive info.
  3. type ArchiveInfo struct {
  4. UpCnt int `json:"up_cnt"`
  5. ArchiveCnt int `json:"archive_cnt"`
  6. UploadDate string `json:"log_date"`
  7. }
  8. // ArchiveID archive id
  9. type ArchiveID struct {
  10. ID int64 `json:"id"`
  11. }
  12. // ArchiveStat for archive stat.
  13. type ArchiveStat struct {
  14. ID int64
  15. AvID int64
  16. State int
  17. Play int64 `json:"play"`
  18. Dm int64 `json:"dm"`
  19. Reply int64 `json:"reply"`
  20. Like int64 `json:"like"`
  21. Share int64 `json:"share"`
  22. }