rpc.go 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // ArgReBuild rebuild args
  6. type ArgReBuild struct {
  7. Mid int64
  8. Reason string
  9. }
  10. // ArgReset is.
  11. type ArgReset struct {
  12. Mid int64
  13. ReLiveTime bool
  14. EventScore bool
  15. BaseScore bool
  16. Operator string
  17. }
  18. // ArgUserScore rpc arg for getting user score.
  19. type ArgUserScore struct {
  20. Mid int64
  21. IP string
  22. }
  23. // ArgHandleEvent rpc arg for handling spy event.
  24. type ArgHandleEvent struct {
  25. Time time.Time
  26. IP string `json:"ip"`
  27. Service string `json:"service"`
  28. Event string `json:"event"`
  29. ActiveMid int64 `json:"active_mid"`
  30. TargetMid int64 `json:"target_mid"`
  31. TargetID int64 `json:"target_id"`
  32. Args interface{} `json:"args"`
  33. Result string `json:"result"`
  34. Effect string `json:"effect"`
  35. RiskLevel int8 `json:"risk_level"`
  36. }
  37. // ArgUser rpc arg for getting user info.
  38. type ArgUser struct {
  39. Mid int64
  40. IP string
  41. }
  42. // ArgStat rpc arg for getting user stat.
  43. type ArgStat struct {
  44. ID int64
  45. Mid int64
  46. }