# 岗位管理 - 获取岗位详情

> 模块标识：position  |  接口数量：7

## 接口说明
**方法**：	GET

**路径**：				/api/positions/{id}

**功能说明**：
根据岗位ID获取岗位详细信息

### 请求参数
```json
{
  "path": [
    {
      "name": "id",
      "type": "string",
      "required": true,
      "description": "岗位ID"
    }
  ]
}
```

### 响应示例
```json
{
  "success": {
    "code": "0000",
    "message": "获取成功",
    "data": {
      "id": 1,
      "code": "POS0001",
      "name": "产品经理",
      "status": 1,
      "createTime": "2025-01-01T10:00:00.000Z"
    }
  },
  "failure": {
    "code": "4040",
    "message": "岗位不存在",
    "data": null
  }
}
```

