2025-05-28 19:16:17 +08:00

31 lines
711 B
Protocol Buffer

syntax = "proto3";
message RouteInfoSets //航路基本信息
{
repeated RouteInfo RouteInfo = 1;
}
message RouteInfo
{
string ID = 1; //ID
string Name = 2; //航路名称
string StartBaseCode = 3; //起始点
string EndBaseCode = 4; //目的点
string Type = 5; //类型(飞机航线/船舶航线)
repeated NavpointInfo Navpoints =6; //航路点集合(包含全部信息)
string UpdateTime = 7; //更新时间
string LastTime = 8; //最后更新时间
}
message NavpointInfo
{
string ID = 1; //ID
string NavpointCode = 2; //导航点编码
string Name = 3; //导航点名称
string Longitude = 4; //经度
string Latitude = 5; //纬度
string Angle = 6; //航向
string Seq = 7; //导航点序号
string UpdateTime = 8; //更新时间
string LastTime = 9; //最后更新时间
}