新增SpksSwitch、GatedBox数据调整

This commit is contained in:
fan 2023-07-26 17:00:02 +08:00
parent 1736885b1a
commit 8bfe7607b3

View File

@ -23,9 +23,9 @@ message RtssGraphicStorage {
repeated AxleCountingSection axleCountingSections = 16;
repeated LogicSection logicSections = 17;
repeated StopPosition stopPositions = 18;
repeated SkpsSwitch skpsSwitchs = 19;
repeated SpksSwitch spksSwitchs = 19;
repeated EsbButton esbButtons = 20; //
repeated GatedBox gateBox = 21; // //
repeated GatedBox gateBoxs = 21; // //
}
message Canvas {
@ -273,22 +273,26 @@ message StopPosition {
string code = 2;
bool flip = 3; //
CoachNum coachNum = 4; //
int32 index = 5; //
}
message SkpsSwitch {
message SpksSwitch {
CommonInfo common = 1;
string code = 2;
bool flip = 3; //
int32 index = 4; //
}
message EsbButton {
CommonInfo common = 1;
string code = 2;
bool flip = 3; //
int32 index = 4; //
}
message GatedBox{
CommonInfo common = 1;
string code = 2;
bool flip = 3; //
int32 index = 4; //
}