consumer.go 814 B

1234567891011121314151617181920212223242526272829303132
  1. package task
  2. import (
  3. "time"
  4. )
  5. // Role .
  6. type Role struct {
  7. ID int64 `json:"id"`
  8. BID int64 `json:"bid"`
  9. RID int64 `json:"rid"`
  10. Type int8 `json:"type"`
  11. Name string `json:"name"`
  12. }
  13. // WatchItem 审核员状态
  14. type WatchItem struct {
  15. UID int64 `json:"uid"`
  16. Uname string `json:"uname"`
  17. IsOnLine bool `json:"is_online"`
  18. LastOn string `json:"laston"`
  19. LastOff string `json:"lastoff"`
  20. CompleteRate string `json:"complete_rate"`
  21. PassRate string `json:"pass_rate"`
  22. Count int64 `json:"count"`
  23. AvgUT string `json:"avgut"`
  24. BizID int64 `json:"business_id"`
  25. FlowID int64 `json:"flow_id"`
  26. Role int8 `json:"role"`
  27. Mtime time.Time `json:"-"`
  28. State int8 `json:"-"`
  29. }