JXMemberModel.dart 610 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. 用户信息模型
  3. * */
  4. import 'JXServiceModel.dart';
  5. class JXMemberModel {
  6. int id = -1;
  7. /*姓名*/
  8. String name = '';
  9. /*电话*/
  10. String tel = '';
  11. /*生日信息*/
  12. String birth = '';
  13. /*地址*/
  14. String prov = '';
  15. String city = '';
  16. String area = '';
  17. String addr = '';
  18. /*其他*/
  19. String remark = '';
  20. /*服务*/
  21. List <JXServiceModel> service = [];
  22. Map<String, dynamic> toMap() {
  23. return {
  24. 'name': name,
  25. 'tel': tel,
  26. 'birth': birth,
  27. 'prov': prov,
  28. 'city': city,
  29. 'area': area,
  30. 'addr': addr,
  31. 'remark': remark,
  32. };
  33. }
  34. }