#### **请求方式:** 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": ""
}
```