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; +}