#### **請求方式:** GET
#### **請求地址:** /comment/getevaluates/:id
#### **參數說明:**
| 參數 | 參數類型 | 必須 | 說明 |
| --- | --- |--- | --- |
| id| Integer| yes| 應聘者id值|
#### **返回信息:**
| 參數 | 參數類型 | 必須 | 說明 |
| --- | --- |--- | --- |
| id| Integer| yes| id值|
| applicants_id| Integer| yes| 應聘者id值|
| lin_user_id| Integer| yes| 面試官id值|
| name| String| yes| 面試官姓名|
| work_experience| String| no| 工作經驗|
| communication| String| no| 溝通交流能力|
| analyze_and_slove| String| no| 分析和解決問題能力|
| profession| String| no| 專業技能、學習能力|
| team_spirit| String| no| 團隊精神|
| quality| String| no| 職業素質|
| matching| String| no| 與崗位的匹配程度|
| advantage| String| no| 優點、可取之處|
| shortcoming| String| no| 缺點、需改進|
| result| Integer| yes| 1:通過;2:未通過|
| create_time| Integer| yes| 創建時間|
#### **返回示例:**
```
{
"code": 0,
"result": [
{
"id": 1,
"applicants_id": 1,
"lin_user_id": 1,
"name": "root",
"work_experience": "基本滿意",
"communication": "基本滿意",
"analyze_and_slove": "基本滿意",
"profession": "基本滿意",
"team_spirit": "基本滿意",
"quality": "基本滿意",
"matching": "基本滿意",
"advantage": "他有很多優點,這里省略",
"shortcoming": "他有很多需要改進的地方,這里暫時省略",
"result": 1,
"create_time": 1628232355
}
],
"message": ""
}
```