123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?php
- /**
- * 结构化的简历详情
- * @author auto create
- */
- class ResumeDetailInfo
- {
-
- /**
- * 学位
- **/
- public $advanced_degree;
-
- /**
- * 期望薪资
- **/
- public $aim_salary;
-
- /**
- * 开始工作时间
- **/
- public $begin_work_time;
-
- /**
- * 出生日期
- **/
- public $birth;
-
- /**
- * 小学,初中,高中,中专,大专,本科,硕士,博士,其他
- **/
- public $education;
-
- /**
- * 教育经历
- **/
- public $education_info_list;
-
- /**
- * 邮箱地址
- **/
- public $email;
-
- /**
- * 工作经历
- **/
- public $experience_info_list;
-
- /**
- * 期望工作地
- **/
- public $forward_location;
-
- /**
- * 英语等级
- **/
- public $grade_of_english;
-
- /**
- * 毕业时间
- **/
- public $graduate_time;
-
- /**
- * 求职状态
- **/
- public $job_status;
-
- /**
- * 已婚,未婚,离婚
- **/
- public $married;
-
- /**
- * 姓名,必传
- **/
- public $name;
-
- /**
- * 国籍
- **/
- public $nationality;
-
- /**
- * 籍贯
- **/
- public $native_place;
-
- /**
- * 先居住地
- **/
- public $now_location;
-
- /**
- * 电话,必传
- **/
- public $phone_num;
-
- /**
- * 政治面貌
- **/
- public $political;
-
- /**
- * 项目经历
- **/
- public $project_info_list;
-
- /**
- * 当前薪资
- **/
- public $salary;
-
- /**
- * 毕业院校
- **/
- public $school;
-
- /**
- * 学校类别
- **/
- public $school_type;
-
- /**
- * 男性,女性
- **/
- public $sex;
-
- /**
- * 专业
- **/
- public $speciality;
-
- /**
- * 学历情况
- **/
- public $student_type;
-
- /**
- * 职位名称
- **/
- public $title_standard;
-
- /**
- * 培训经历
- **/
- public $training_info_list;
-
- /**
- * 行业名称
- **/
- public $vocation_standard;
- }
- ?>
|