QDAirPortBackendTest/接口文档3.md
shan 8ff3cbb096 Add vehicle details API and update coordinates
- Add /api/vehicle_details endpoint to query vehicle list
- Update coordinates to Qingdao area (36.367216, 120.082999)
- Set longitude to 0 in vehicle status response

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-23 09:57:59 +08:00

28 lines
445 B
Markdown

车辆管理系统接口文档
1. 查询车辆列表
接口描述
该接口用于查询项目车辆列表数据。
接口详情
协议名称: HTTP
接口地址: /api/vehicle_details
请求方法: GET
请求参数: 无
参数名称,参数类型,描述
code,int,状态码
msg,str,任务信息
data,str,车辆列表
timestamp,float,时间戳
{
"code": 200,
"message": "success",
"data": [
"AET02",
"AET01"
],
"timestamp": 0
}