【发布时构建的区段结构】
This commit is contained in:
parent
911d1999d0
commit
32ac71bd13
23
protos/section_status.proto
Normal file
23
protos/section_status.proto
Normal file
@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user