QDAirPortBackend0122/doc/requirement/aircraft_status_api.md
2026-01-22 13:19:47 +08:00

30 lines
645 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 航空器状态接口(模拟)
### 1.1 航空器进出港状态
1.1.1 接口地址http://IP:端口/aircraftStatusController/getAircraftStatus
1.1.2 请求方式get
1.1.3 请求参数:
1.1.4 返回格式json
type进出港类型 IN进港 OUT出港
flightNo航班号 CA3456
inRunway :进港跑道编号 35
outRunway出港跑道编号 34
contactCross联络道口 F1
seat目的机位 138
timestamp时间戳 1715769600000
示例:
{
"type": "IN",
"flightNo": "CA3456",
"inRunway": "35",
"outRunway": "34",
"contactCross": "F1",
"seat": "138",
"timestamp": 1715769600000
}