user.go 542 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package tables
  2. type User_identity struct {
  3. UserId int
  4. Imei string
  5. Password string
  6. NickName string
  7. }
  8. type User_face struct {
  9. FaceId int
  10. FaceUrl string
  11. ChangeIndex int
  12. }
  13. type User_vip struct {
  14. VipLevel int
  15. VipPoint int
  16. }
  17. type User_pay struct {
  18. PayAmount int // 充值金额
  19. Gold int
  20. Diamond int
  21. }
  22. type User_game struct {
  23. CannonId int
  24. BulletId int
  25. }
  26. type User_source struct {
  27. PartnerId int
  28. Version string
  29. }
  30. type User struct {
  31. User_identity
  32. User_face
  33. User_vip
  34. User_pay
  35. User_game
  36. User_source
  37. }