userinfo.go 1.0 KB

123456789101112131415161718192021222324252627282930
  1. package model
  2. import (
  3. "time"
  4. )
  5. // UserInfo def.
  6. type UserInfo struct {
  7. ID int64 `json:"id"`
  8. Mid int64 `json:"mid"`
  9. State int8 `json:"state"` //状态 0.正常 1.封禁
  10. Score int8 `json:"score"` //真实分值
  11. BaseScore int8 `json:"base_score"` //基础信息得分
  12. EventScore int8 `json:"event_score"` //事件得分
  13. ReliveTimes int8 `json:"relive_times"` //累计重绘次数
  14. Mtime time.Time `json:"mtime"`
  15. }
  16. // UserInfoDto dto.
  17. type UserInfoDto struct {
  18. ID int64 `json:"id"`
  19. Mid int64 `json:"mid"`
  20. Name string `json:"name"` //昵称
  21. State int8 `json:"state"` //状态 0.正常 1.封禁
  22. Score int8 `json:"score"` //真实分值
  23. BaseScore int8 `json:"base_score"` //基础信息得分
  24. EventScore int8 `json:"event_score"` //事件得分
  25. ReliveTimes int8 `json:"relive_times"` //累计重绘次数
  26. Mtime int64 `json:"mtime"` //更新时间
  27. }