{
  "module": {
    "module": "部门管理",
    "moduleKey": "department"
  },
  "api": {
    "title": "获取部门详情",
    "method": "GET",
    "path": "/api/departments/{id}",
    "description": "根据部门ID获取部门详细信息",
    "requestParams": {
      "path": [
        {
          "name": "id",
          "type": "string",
          "required": true,
          "description": "部门ID"
        }
      ]
    },
    "responseExample": {
      "success": {
        "code": "0000",
        "message": "获取成功",
        "data": {
          "id": 1,
          "code": "DEP0001",
          "name": "研发部",
          "organizationId": "ORG0001",
          "status": 1,
          "createTime": "2025-01-01T10:00:00.000Z"
        }
      },
      "failure": {
        "code": "4040",
        "message": "部门不存在",
        "data": null
      }
    }
  }
}