class ResumeModel { String name; int gender; String birthday; String telephone; String wechat; String workingTime; String salary; String ability; String intro; ResumeModel.fromJson(Map json){ name = json['name']; gender = json['gender']; birthday = json['birthday']; telephone = json['telephone']; wechat = json['wechat']; workingTime = json['workingTime']; salary = json['salary']; ability = json['ability']; intro = json['intro']; } }