30 lines
503 B
Protocol Buffer
30 lines
503 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package state;
|
|
option java_package = "club.joylink.xiannccda.dto.protos";
|
|
option java_outer_classname = "SectionProto";
|
|
|
|
message Section {
|
|
// 区段编码
|
|
string code = 1;
|
|
|
|
// 左侧区段
|
|
Section leftSection = 2;
|
|
|
|
// 右侧区段
|
|
Section rightSection = 3;
|
|
|
|
// 是否计轴区段
|
|
bool axleCounter = 4;
|
|
|
|
// 关联区段
|
|
repeated Section logicList = 5;
|
|
|
|
// 左侧公里标
|
|
string leftKilometerCode = 6;
|
|
|
|
// 右侧公里标
|
|
string rightKilometerCode = 7;
|
|
}
|
|
|