resume_model.dart 513 B

1234567891011121314151617181920212223
  1. class ResumeModel {
  2. String name;
  3. int gender;
  4. String birthday;
  5. String telephone;
  6. String wechat;
  7. String workingTime;
  8. String salary;
  9. String ability;
  10. String intro;
  11. ResumeModel.fromJson(Map<String, dynamic> json){
  12. name = json['name'];
  13. gender = json['gender'];
  14. birthday = json['birthday'];
  15. telephone = json['telephone'];
  16. wechat = json['wechat'];
  17. workingTime = json['workingTime'];
  18. salary = json['salary'];
  19. ability = json['ability'];
  20. intro = json['intro'];
  21. }
  22. }