task.go 765 B

123456789101112131415161718192021222324252627282930313233
  1. package model
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. // Task is laser task
  6. type Task struct {
  7. ID int64 `json:"id"`
  8. AdminID int64 `json:"admin_id"`
  9. MID int64 `json:"mid"`
  10. LogDate xtime.Time `json:"log_date"`
  11. ContactEmail string `json:"contact_email"`
  12. SourceType int `json:"source_type"`
  13. Platform int `json:"platform"`
  14. State int `json:"state"`
  15. IsDeleted int `json:"is_deleted"`
  16. CTime xtime.Time `json:"ctime"`
  17. MTime xtime.Time `json:"mtime"`
  18. }
  19. const (
  20. ALL_PLATFORM = iota
  21. )
  22. // TaskInfo is to set as value of memcache key(mid)
  23. type TaskInfo struct {
  24. MID int64
  25. LogDate xtime.Time
  26. SourceType int
  27. Platform int
  28. Empty bool
  29. }