#### **請求方式:** GET
#### **請求地址:** /resume/all
#### **參數說明:**
| 參數 | 參數類型 | 必須 | 說明 |
| --- | --- |--- | --- |
| interview_name| String | yes | 姓名 |
#### **返回信息:**
| 參數 | 參數類型 | 必須 | 說明 |
| --- | --- |--- | --- |
| id| Integer| yes| id值|
| waiting_check| Array| yes| 待審核|
| waiting_interview| Array| yes| 待面試|
| interviewed| Array| yes| 已面試跟蹤|
| name| String| yes| 姓名|
| gender| String| yes| 性別|
| native_palace| String| yes| 籍貫|
| date_of_birth| Integer| yes| 出生年月|
| date_of_work_first| Integer| yes| 首次參加工作日期|
| highest_education| String| yes| 最高學歷|
| graduation_school| String| yes| 畢業院校|
| graduation_major| String| yes| 專業|
| date_graduation| Integer| yes| 畢業時間|
| recent_work| String| no| 最近任職工作單位|
| phone| Number| yes| 手機號|
| email| String| yes| 郵箱|
| application_department| String| yes| 部門|
| application_position| String| yes| 崗位|
| create_time| Integer| yes| 創建時間|
| source| String| no| 簡歷來源|
| recommend_department| String| no| 推薦部門|
|trainee | Integer| yes| 1:正式員工;2:實習生|
| status| Integer| yes| 0:待審核;1:待面試;2:已面試|
#### **返回示例:**
```
{
"code": 0,
"result": {
"waiting_check": [
{
"id": 1,
"name": "姓名",
"gender": "男",
"native_palace": "鄭州",
"date_of_birth": 1628158999,
"date_of_work_first": 1628158999,
"highest_education": "本科",
"graduation_school": "清華大學",
"graduation_major": "機械",
"date_graduation": 1628158999,
"recent_work": null,
"phone": "15187510542",
"email": "123456@qq.com",
"application_department": "政府旅游營銷中心",
"application_position": "商務合作經理一組",
"create_time": 1628159125,
"source": null,
"recommend_department": null,
"trainee": 0,
"status": 0
}
],
"waiting_interview": [],
"interviewed": []
},
"message": ""
}
```