From b271b96e0fbc40b4925e39ff962eb2a1c40c71b1 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Wed, 9 Oct 2024 18:51:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=85=AC=E5=85=B1=E7=9A=84?= =?UTF-8?q?=E7=BA=BF=E6=9D=A1=E7=BB=98=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/iscs_graphic_data.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/iscs_graphic_data.proto b/src/iscs_graphic_data.proto index 3131c32..622fab0 100644 --- a/src/iscs_graphic_data.proto +++ b/src/iscs_graphic_data.proto @@ -40,6 +40,16 @@ message Rect { common.Point point = 8; // 画第一个点的坐标 } +message Line { + common.CommonInfo common = 1; + string code = 2; // 编号 + repeated common.Point points = 3; // 点列表 + bool isCurve = 4; // 是否曲线 + int32 segmentsCount = 5; // 曲线分段数 + int32 lineWidth = 6; // 线宽 + string lineColor = 7; // 线色 +} + //CCTV按钮 message CCTVButton { enum ButtonType { @@ -90,6 +100,7 @@ message CCTVOfStationControlStorage { repeated IscsText iscsTexts = 4; repeated Rect rects = 5; repeated CCTVButton cctvButtons = 6; + repeated Line lines = 7; } message FASPlatformAlarmStorage { @@ -98,4 +109,5 @@ message FASPlatformAlarmStorage { repeated Arrow arrows = 3; repeated IscsText iscsTexts = 4; repeated Rect rects = 5; + repeated Line lines = 6; }