This commit is contained in:
xzb 2023-07-11 16:12:22 +08:00
commit 4147f6e740
2 changed files with 8 additions and 0 deletions

0
protoc-23.1/bin/linux-x86_64/protoc Normal file → Executable file
View File

View File

@ -21,6 +21,7 @@ message RtssGraphicStorage {
repeated Separator separators = 14;
repeated SectionLink sectionLinks = 15;
repeated AxleCountingSection axleCountingSections = 16;
repeated AxleCountingSection logicSections = 17;
}
message Canvas {
@ -205,6 +206,12 @@ message RelatedRef {
DevicePort devicePort = 3; //
}
//
message TurnoutPosRef {
string id = 1; //ID
int32 position= 2; //01
}
message Separator { //
CommonInfo common = 1;
string code = 2;
@ -224,4 +231,5 @@ message AxleCountingSection { // 计轴区段
repeated Point points = 3;
RelatedRef paRef = 4; // A端关联的设备
RelatedRef pbRef = 5; // B端关联的设备
repeated TurnoutPosRef turnoutPos=6; //
}