逻辑区段调整

This commit is contained in:
dong 2023-07-11 16:40:02 +08:00
parent 03ad1a611d
commit 25546a5198

View File

@ -21,7 +21,7 @@ message RtssGraphicStorage {
repeated Separator separators = 14; repeated Separator separators = 14;
repeated SectionLink sectionLinks = 15; repeated SectionLink sectionLinks = 15;
repeated AxleCountingSection axleCountingSections = 16; repeated AxleCountingSection axleCountingSections = 16;
repeated AxleCountingSection logicSections = 17; repeated LogicSection logicSections = 17;
} }
message Canvas { message Canvas {
@ -235,3 +235,11 @@ message AxleCountingSection { // 计轴区段
repeated TurnoutPosRef turnoutPos=6; // repeated TurnoutPosRef turnoutPos=6; //
int32 indexNumber=7; // int32 indexNumber=7; //
} }
message LogicSection { //
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
string axleSectionId = 4; // Id
int32 indexNumber=5; //
}