地图数据调整

This commit is contained in:
fan 2023-10-12 13:22:26 +08:00
parent 85290a8ba9
commit 25a46b7963

View File

@ -39,6 +39,7 @@ message RtssGraphicStorage {
UniqueIdOfStationLayout UniqueIdPrefix = 31;//--
repeated KilometerConvert kilometerConvertList = 32;//
repeated ScreenDoor screenDoors = 33;
repeated StationRelateDevice stationRelateDeviceList = 34; //
}
message Canvas {
@ -454,3 +455,14 @@ message KilometerConvert {
KilometerSystem kmB = 2;
bool sameTrend = 3; //
}
/* 车站关联的设备列表 */
message StationRelateDevice {
string code = 1;//
repeated Combinationtype combinationtypes = 2; //
RelatedRef.DeviceType deviceType = 3;//
}
message Combinationtype {
string code = 1;
repeated string refDevices = 2;//
}