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

37 lines
816 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 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; //摘要
}