account.go 1006 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package model
  2. // ActUpInfo account up info
  3. type ActUpInfo struct {
  4. Nickname string `json:"nickname"`
  5. Face string `json:"face"`
  6. }
  7. // Account Account
  8. type Account struct {
  9. Mid int64 `json:"mid"`
  10. Name string `json:"name"`
  11. Sex string `json:"sex"`
  12. Face string `json:"face"`
  13. Sign string `json:"sign"`
  14. Rank int64 `json:"rank"`
  15. }
  16. // AccountInfosResult Account info result
  17. type AccountInfosResult struct {
  18. Code int `json:"code"`
  19. Data map[int64]*Account `json:"data"`
  20. Message string `json:"message"`
  21. TTL int64 `json:"ttl"`
  22. }
  23. // UpIdentify up identify
  24. type UpIdentify struct {
  25. Article int `json:"article"`
  26. Pic int `json:"pic"`
  27. Archive int `json:"archive"`
  28. Blink int `json:"blink"`
  29. }
  30. // UperInfosResult info result
  31. type UperInfosResult struct {
  32. Code int `json:"code"`
  33. Data map[string]*UpIdentify `json:"data"`
  34. Message string `json:"message"`
  35. TTL int64 `json:"ttl"`
  36. }