60 lines
969 B
Protocol Buffer
60 lines
969 B
Protocol Buffer
|
|
syntax = "proto3";
|
|||
|
|
|
|||
|
|
message PersonInfoSets //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ
|
|||
|
|
{
|
|||
|
|
repeated PersonInfo PersonInfo = 1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
message AirportInfoSets //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ
|
|||
|
|
{
|
|||
|
|
repeated AirportInfoS AirportInfoS = 1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
message PortInfoSets //<2F>ۿ<EFBFBD><DBBF><EFBFBD>Ϣ
|
|||
|
|
{
|
|||
|
|
repeated PortInfo PortInfo = 1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
message OrganizationInfoSets //<2F>ۿ<EFBFBD><DBBF><EFBFBD>Ϣ
|
|||
|
|
{
|
|||
|
|
repeated OrganizationInfo OrganizationInfo = 1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
message PersonInfo
|
|||
|
|
{
|
|||
|
|
string ID = 1; //ID
|
|||
|
|
string NAME = 2; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Age = 3; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Nation = 4; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Introduction = 5; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
message AirportInfoS
|
|||
|
|
{
|
|||
|
|
string ID = 1; //ID
|
|||
|
|
string NAME = 2; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Location = 3; //<2F><><EFBFBD>ڵ<EFBFBD>
|
|||
|
|
string Longitude = 4; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Latitude = 5; //γ<><CEB3>
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
message PortInfo
|
|||
|
|
{
|
|||
|
|
string ID = 1; //ID
|
|||
|
|
string NAME = 2; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Location = 3; //<2F><><EFBFBD>ڵ<EFBFBD>
|
|||
|
|
string Longitude = 4; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Latitude = 5; //γ<><CEB3>
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
message OrganizationInfo
|
|||
|
|
{
|
|||
|
|
string ID = 1; //ID
|
|||
|
|
string NAME = 2; //<2F><><EFBFBD><EFBFBD>
|
|||
|
|
string Nation = 3;
|
|||
|
|
string Commander = 4;
|
|||
|
|
string Type = 5;
|
|||
|
|
string Introduction = 6;
|
|||
|
|
}
|