From 92fd4fa663c862fe84ae809f2a33fd0fc16055ca Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Wed, 25 Sep 2024 14:47:26 +0800 Subject: [PATCH] =?UTF-8?q?iscs=E6=95=B0=E6=8D=AE=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E8=B5=9E=E6=8F=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/iscs_graphic_data.proto | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/src/iscs_graphic_data.proto b/src/iscs_graphic_data.proto index 943b938..3131c32 100644 --- a/src/iscs_graphic_data.proto +++ b/src/iscs_graphic_data.proto @@ -4,11 +4,8 @@ import "common.proto"; package iscsGraphicData; message IscsGraphicStorage { - common.Canvas canvas = 1; - repeated Arrow arrows = 2; - repeated IscsText iscsTexts = 3; - repeated Rect rects = 4; - repeated CCTVButton cctvButtons = 5; + repeated CCTVOfStationControlStorage cctvOfStationControlStorages = 1; + repeated FASPlatformAlarmStorage fasPlatformAlarmStorages = 2; } message UniqueIdOfStationLayout { @@ -85,3 +82,20 @@ message TemperatureDetector { string code = 2; } + +message CCTVOfStationControlStorage { + string stationName = 1; + common.Canvas canvas = 2; + repeated Arrow arrows = 3; + repeated IscsText iscsTexts = 4; + repeated Rect rects = 5; + repeated CCTVButton cctvButtons = 6; +} + +message FASPlatformAlarmStorage { + string stationName = 1; + common.Canvas canvas = 2; + repeated Arrow arrows = 3; + repeated IscsText iscsTexts = 4; + repeated Rect rects = 5; +}