This commit is contained in:
fan 2023-09-21 13:11:35 +08:00
commit 0413df374c
3 changed files with 19 additions and 3 deletions

View File

@ -236,6 +236,8 @@ message SimulationStatus {
int32 mapId = 2;
int32 projectId = 3;
repeated int32 mapIds = 4;
}
//

View File

@ -9,7 +9,8 @@ message RelayCabinetGraphicStorage {
repeated RelayCabinet relayCabinets = 2;
repeated Relay relays = 3;
repeated DeviceRelateRelay deviceRelateRelayList = 4;
string belongsConcentrationStation = 5;//
//string belongsConcentrationStation = 5;//
UniqueIdType UniqueIdPrefix = 6;//--
}
message RelayCabinet {
@ -31,7 +32,13 @@ message DeviceRelateRelay {
//repeated string refRelay = 4;//
repeated Combinationtype combinationtypes = 5; //
}
message Combinationtype{
message Combinationtype {
string code = 1;
repeated string refRelays = 2;//
}
message UniqueIdType {
string city = 1;//
string lineId = 2;//线
string belongsConcentrationStation = 3;//
}

View File

@ -35,6 +35,8 @@ message RtssGraphicStorage {
repeated Curvature curvatures = 27; //
repeated TrackSection trackSections = 28; //
repeated TrackLogicSection trackLogicSections = 29; //
//UniqueIdType UniqueIdPrefix = 30;//--
UniqueIdOfStationLayout UniqueIdPrefix = 31;//--
}
message Canvas {
@ -148,7 +150,7 @@ message AxleCounting {
repeated RelatedRef axleCountingRef =
4; // id和端口
int32 index = 5; //
bool invent = 6; //--
//bool invent = 6; //--
TypeDetectionPoint type = 7; //
repeated string centralizedStations = 8; //
}
@ -427,3 +429,8 @@ message CalculateLink {
string deviceType = 3;
}
}
message UniqueIdOfStationLayout {
string city = 1;//
string lineId = 2;//线
}