osc/deploy/proto/definition/Airport.proto
2025-05-28 19:16:17 +08:00

30 lines
671 B
Protocol Buffer
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.

syntax = "proto3";
message AirportInfoSets //机场基本信息
{
repeated AirportInfo AirportInfo = 1;
}
message AirportInfo
{
string ID = 1; //ID
string Name = 2; //名称
string ICAO = 3; //ICAO码
string IATA = 4; //IATA码
string GPS = 5; //GPS代码
string Type = 6; //类型
string UsageType = 7; //军民属性
string Continent = 8; //所属大洲
string Nation = 9; //所属国家/地区
string City = 10; //所属城市
string Height = 11; //海拔
string Longitude = 12; //经度
string Latitude = 13; //纬度
string Image = 14; //图片
string UpdateTime = 15; //更新时间
string LastTime = 16; //最后更新时间
string Sensitive = 17; //是否高敏0/否1/是)
string DataSource = 18; //数据源
}