37 lines
816 B
Protocol Buffer
37 lines
816 B
Protocol Buffer
syntax = "proto3";
|
||
|
||
message LaunchSiteInfoSets //发射场基本信息
|
||
{
|
||
repeated LaunchSiteInfo LaunchSiteInfo = 1;
|
||
}
|
||
|
||
message LaunchPlaneInfoSets //发射场基本信息
|
||
{
|
||
repeated LaunchPlaneInfo LaunchPlaneInfo = 1;
|
||
}
|
||
|
||
message LaunchSiteInfo
|
||
{
|
||
string ID = 1; //ID
|
||
string Name_Zh = 2; //中文名称
|
||
string Name_En = 3; //外文名称
|
||
string Position = 4; //地理位置
|
||
string Nation = 5; //所属国家
|
||
string BuilderTime = 6; //建造时间
|
||
string Affiliates = 7; //隶属机构
|
||
string Longitude = 8; //经度
|
||
string Latitude = 9; //纬度
|
||
string Image = 10; //图片
|
||
string UpdateTime = 11; //更新时间
|
||
string LastTime = 12; //最后更新时间
|
||
string Sensitive = 13; //是否高敏(0/否;1/是)
|
||
}
|
||
|
||
message LaunchPlaneInfo
|
||
{
|
||
string ID = 1; //ID
|
||
string postid =2; //计划发布id
|
||
string date =3; //日期
|
||
string title =4; //标题
|
||
string excerpt = 5; //摘要
|
||
} |