xian-ncc-da-message/protos/device_info.proto
2023-06-30 09:25:28 +08:00

46 lines
859 B
Protocol Buffer

syntax = "proto3";
package state;
import "stationLayoutGraphics.proto";
option java_package = "club.joylink.xiannccda.dto.protos";
option java_outer_classname = "DeviceInfoProto";
// 区段
message Section {
string id = 1;
// 区段编码
string code = 2;
// 区段类型
graphicData.Section.SectionType type = 3;
// 公里标
repeated graphicData.KilometerSystem kilometerSystem = 4;
// 关联区段
repeated Section children = 5;
// 转换后的公里标数字
repeated int64 convertKilometer = 6;
}
// 道岔
message Switch {
string id = 1;
string code = 2;
graphicData.KilometerSystem switchKilometerSystem = 3;
int64 switchConvertKilometer = 4;
// 关联道岔的公里标
repeated graphicData.KilometerSystem kilometerSystem = 5;
// 转换后的公里标数字
repeated int64 convertKilometer = 6;
}