event.go 959 B

12345678910111213141516171819202122232425262728293031
  1. package dataobj
  2. type Event struct {
  3. Id int64 `json:"id"`
  4. EventId string `json:"event_id"`
  5. Status string `json:"status"`
  6. Url string `json:"url"`
  7. Ip string `json:"ip"`
  8. EventTime int64 `json:"event_time"`
  9. StrategyId int64 `json:"strategy_id"`
  10. RespTime int `json:"resp_time"`
  11. RespCode string `json:"resp_code"`
  12. Result int64 `json:"result"`
  13. CurrentStep int `json:"current_step"`
  14. MaxStep int `json:"max_step"`
  15. }
  16. type EventQueue struct {
  17. Id int64 `json:"id"`
  18. EventId string `json:"event_id"`
  19. Status string `json:"status"`
  20. Url string `json:"url"`
  21. Ip string `json:"ip"`
  22. EventTime int64 `json:"event_time"`
  23. StrategyId int64 `json:"strategy_id"`
  24. RespTime int `json:"resp_time"`
  25. RespCode string `json:"resp_code"`
  26. Result int64 `json:"result"`
  27. CurrentStep int `json:"current_step"`
  28. MaxStep int `json:"max_step"`
  29. }