eventmsg.go 558 B

1234567891011121314151617181920
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // EventMessage event from bigdata def.
  6. type EventMessage struct {
  7. Time time.Time `json:"time"`
  8. IP string `json:"ip"`
  9. Service string `json:"service"`
  10. Event string `json:"event"`
  11. ActiveMid int64 `json:"active_mid"`
  12. TargetMid int64 `json:"target_mid"`
  13. TargetID int64 `json:"target_id"`
  14. Args interface{} `json:"args"`
  15. Result string `json:"result"`
  16. Effect string `json:"effect"`
  17. RiskLevel int8 `json:"risk_level"`
  18. }