增加公共的线条绘制

This commit is contained in:
joylink_zhaoerwei 2024-10-09 18:51:39 +08:00
parent 49c235a66f
commit b271b96e0f

View File

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