userLoginEvent.go 311 B

1234567891011121314
  1. package eventmodels
  2. // 用户登录事件
  3. type UserLoginEventContent struct {
  4. UserBasic
  5. EventBasic
  6. Ip string `json:"ip"` // IP
  7. Platform string `json:"platform"` // 平台
  8. Channel string `json:"channel"` // 渠道
  9. }
  10. func (e *UserLoginEventContent) EventName() string {
  11. return "UserLogin"
  12. }