log.go 545 B

12345678910111213141516171819202122
  1. package model
  2. // LoginLog login log.
  3. type LoginLog struct {
  4. Mid int64 `json:"mid"`
  5. Timestamp int64 `json:"timestamp"`
  6. LoginIP int64 `json:"loginip"`
  7. Type int64 `json:"type"`
  8. Server string `json:"server"`
  9. }
  10. // PwdLog pwd log.
  11. type PwdLog struct {
  12. ID int64 `json:"id"`
  13. Mid int64 `json:"mid"`
  14. Timestamp int64 `json:"timestamp"`
  15. IP int64 `json:"ip"`
  16. OldPwd string `json:"old_pwd"`
  17. OldSalt string `json:"old_salt"`
  18. NewPwd string `json:"new_pwd"`
  19. NewSalt string `json:"new_salt"`
  20. }