This commit is contained in:
weizhihong 2023-11-13 14:12:05 +08:00
commit e388e774f4

View File

@ -42,6 +42,8 @@ message RtssGraphicStorage {
repeated StationRelateDevice stationRelateDeviceList = 34; //
repeated SectionCodePoint sectionCodePointList = 35; //
ScreenDoorConfig screenDoorConfig = 36;//--
repeated Beacon beacons = 37;
GenerateAxleCountingConfig generateAxleCountingConfig = 38;//
}
message Canvas {
@ -184,6 +186,11 @@ message AxleCounting {
repeated string centralizedStations = 8; //
}
message GenerateAxleCountingConfig {
repeated string bbConnect = 1; //bb连接处生成计轴的道岔id()
repeated string noGenerateGroup = 2;//
}
// message Train {
// CommonInfo common = 1;
// string code = 2;
@ -451,6 +458,18 @@ message CurvatureKiloMarker {
repeated KilometerSystem kilometerSystem = 4; //
}
/** 信标 */
message Beacon {
enum BeaconType {
Static = 0;
Dynamic = 1;
}
CommonInfo common = 1;
string code = 2;
BeaconType type = 3;
bool flip = 4;
}
message Slope {
CommonInfo common = 1;
repeated Point points = 2;