1234567891011121314151617181920212223 |
- class ResumeModel {
- String name;
- int gender;
- String birthday;
- String telephone;
- String wechat;
- String workingTime;
- String salary;
- String ability;
- String intro;
- ResumeModel.fromJson(Map<String, dynamic> 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'];
- }
- }
|