#### **请求方式:** GET
#### **请求地址(正式):** /apply/regularpost
#### **请求地址(实习):** /apply/internshippost
#### **参数说明:**
| 参数 | 参数类型 | 必须 | 说明 |
| --- | --- |--- | --- |
| | | | |
#### **返回信息:**
| 参数 | 参数类型 | 必须 | 说明 |
| --- | --- |--- | --- |
| id| Integer| yes| id值|
| department| Array| yes| 部门|
|post | Array| yes| 岗位|
| departments_id| Integer| yes| 关联department部门id|
| name| String| yes| 部门或岗位名称|
|internship| Integer| yes| 1:正式岗;2:实习岗|
#### **返回示例:**
```
{
"code": 0,
"result": {
"department": [
{
"id": 1,
"name": "政府旅游营销中心"
}
],
"post": [
{
"id": 1,
"departments_id": 1,
"name": "商务合作经理一组",
"internship": 1
}
]
},
"message": ""
}
```