From 25a46b7963dbcb78f7108d54b779bb11ea53d180 Mon Sep 17 00:00:00 2001 From: fan Date: Thu, 12 Oct 2023 13:22:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E6=95=B0=E6=8D=AE=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index df10b91..3228f2b 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -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;//门控箱关联的设备 +}