新增设备(ESB、SKPS、GateBox、StopPosition)
This commit is contained in:
parent
b717ada89b
commit
1736885b1a
@ -22,6 +22,10 @@ message RtssGraphicStorage {
|
||||
repeated SectionLink sectionLinks = 15;
|
||||
repeated AxleCountingSection axleCountingSections = 16;
|
||||
repeated LogicSection logicSections = 17;
|
||||
repeated StopPosition stopPositions = 18;
|
||||
repeated SkpsSwitch skpsSwitchs = 19;
|
||||
repeated EsbButton esbButtons = 20; // 紧急关闭按钮
|
||||
repeated GatedBox gateBox = 21; // 站台开门/关门/发车按钮整合控制箱
|
||||
}
|
||||
|
||||
message Canvas {
|
||||
@ -259,3 +263,32 @@ message LogicSection { // 逻辑区段
|
||||
int32 index = 5; // 索引编号
|
||||
string turnoutId = 6; // 关联的岔芯对应的道岔id,此时该逻辑区段为该道岔C端关联的轨道link
|
||||
}
|
||||
|
||||
message StopPosition {
|
||||
enum CoachNum {
|
||||
Four = 0;
|
||||
Six = 1;
|
||||
}
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
bool flip = 3; // 是否翻转(前端显示)
|
||||
CoachNum coachNum = 4; //编组数量
|
||||
}
|
||||
|
||||
message SkpsSwitch {
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
bool flip = 3; // 是否翻转(前端显示)
|
||||
}
|
||||
|
||||
message EsbButton {
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
bool flip = 3; // 是否翻转(前端显示)
|
||||
}
|
||||
|
||||
message GatedBox{
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
bool flip = 3; // 是否翻转(前端显示)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user