archive_recheck.go 690 B

12345678910111213141516171819202122232425262728
  1. package archive
  2. import "time"
  3. const (
  4. //TypeChannelRecheck 频道回查
  5. TypeChannelRecheck = 0 //频道回查
  6. // TypeHotRecheck 热门回查
  7. TypeHotRecheck = 1
  8. // TypeInspireRecheck 激励回查
  9. TypeInspireRecheck = 2
  10. //RecheckStateWait 频道回查待回查
  11. RecheckStateWait = -1 //待回查
  12. //RecheckStateDone 频道回查已回查
  13. RecheckStateDone = 0 //已回查
  14. )
  15. // Recheck archive recheck
  16. type Recheck struct {
  17. ID int64 `json:"id"`
  18. Type int `json:"type"`
  19. AID int64 `json:"aid"`
  20. UID int64 `json:"uid"`
  21. State int8 `json:"state"`
  22. Remark string `json:"remark"`
  23. CTime time.Time `json:"ctime"`
  24. MTime time.Time `json:"mtime"`
  25. }