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

27 lines
602 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 PortInfoSets //港口基本信息
{
repeated PortInfo PortInfo = 1;
}
message PortInfo
{
string ID = 1; //ID
string GlobalCode = 2; //港口id全球
string Name_En = 3; //港口名称(英文)
string Code = 4; //港口代码
string UsageType = 5; //军民属性
string Nation = 6; //所属国家
string Image = 7; //图片
string Route = 8; //航线
string DataSource = 9; //数据源
string Longitude = 10; //经度
string Latitude = 11; //纬度
string UpdateTime = 12; //更新时间
string LastTime = 13; //最后更新时间
string Name_Zh = 14; //中文名称
string Sensitive = 15; //是否高敏0/否1/是)
}