增加集中站管理的车站

This commit is contained in:
joylink_zhaoerwei 2023-12-21 11:12:23 +08:00
parent dab95bea5b
commit 30dfea6f7f

View File

@ -24,6 +24,7 @@ message RtssGraphicStorage {
repeated AxleCounting axleCountings = 17;
repeated Separator separators = 18;
repeated LogicSection logicSections = 19;
repeated ConcentrationDividingLine concentrationDividingLines = 20; // 线
}
message Canvas {
@ -101,6 +102,23 @@ message Polygon {
repeated Point points = 5; //
}
message ConcentrationDividingLine {
CommonInfo common = 1;
string code = 2; //
repeated Point points = 3; //
string oldrefLeftStationId = 4;//id
string oldrefRightStationId = 5;//id
repeated NodeConWithSec nodeConWithSecs = 6;// 线
bool isOtherLineConcentrationDividingLine = 7;//线线
uint32 refLeftStationId = 8;//id
uint32 refRightStationId = 9;//id
}
message NodeConWithSec {
RelatedRef leftSection = 1;
RelatedRef rightSection = 2;
}
message Platform {
CommonInfo common = 1;
string code = 2;
@ -123,6 +141,7 @@ message Station {
// string kilometerCode = 5; //
KilometerSystem kilometerSystem = 6; //
string name = 7;
repeated uint32 manageStations = 8; // -id
}
message StationLine {