添加火灾报警数据
This commit is contained in:
parent
5cb82e750f
commit
62dc244c92
|
@ -0,0 +1,23 @@
|
||||||
|
syntax = "proto3";
|
||||||
|
import "iscs_graphic_data.proto";
|
||||||
|
|
||||||
|
package FireAlarmGraphicData;
|
||||||
|
|
||||||
|
message CCTVGraphicStorage {
|
||||||
|
iscsGraphicData.Canvas canvas = 1;
|
||||||
|
repeated iscsGraphicData.Arrow arrows = 2;
|
||||||
|
repeated iscsGraphicData.IscsText iscsTexts = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** CCTV按钮 */
|
||||||
|
message CCTVButton {
|
||||||
|
enum ButtonType {
|
||||||
|
rect = 0;
|
||||||
|
monitor = 1; //监控样子的按钮
|
||||||
|
semicircle = 2; //半圆样子的按钮
|
||||||
|
}
|
||||||
|
iscsGraphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
ButtonType buttonType = 3;
|
||||||
|
}
|
Loading…
Reference in New Issue