增加公共的线条绘制
This commit is contained in:
parent
49c235a66f
commit
b271b96e0f
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user