user_model.dart 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /// Description:
  2. /// Time : 09/03/2023 Sunday
  3. /// Author : liuyuqi.gov@msn.cn
  4. class UserModel {
  5. int id = 0;
  6. String name = "";
  7. int age = 18;
  8. String email = "";
  9. String password = "";
  10. String phone = "";
  11. String address = "";
  12. String avator = "";
  13. String token = "";
  14. String createdAt = "";
  15. UserModel({
  16. required this.id,
  17. required this.name,
  18. required this.age,
  19. required this.email,
  20. required this.password,
  21. required this.phone,
  22. required this.address,
  23. required this.avator,
  24. required this.token,
  25. required this.createdAt,
  26. });
  27. UserModel.fromJson(Map<String, dynamic> json) {
  28. id = json['id'];
  29. name = json['name'];
  30. age = json['age'];
  31. email = json['email'];
  32. password = json['password'];
  33. phone = json['phone'];
  34. address = json['address'];
  35. avator = json['avator'];
  36. token = json['token'];
  37. createdAt = json['createdAt'];
  38. }
  39. Map<String, dynamic> toJson() {
  40. return {
  41. 'id': id,
  42. 'name': name,
  43. 'age': age,
  44. 'email': email,
  45. 'password': password,
  46. 'phone': phone,
  47. 'address': address,
  48. 'avator': avator,
  49. 'token': token,
  50. 'createdAt': createdAt,
  51. };
  52. }
  53. }