fas添加数据
This commit is contained in:
parent
15378bc73d
commit
4029b6c96f
|
@ -0,0 +1,41 @@
|
||||||
|
syntax = "proto3";
|
||||||
|
import "iscs_graphic_data.proto";
|
||||||
|
|
||||||
|
package FASGraphicData;
|
||||||
|
|
||||||
|
message FASGraphicStorage {
|
||||||
|
iscsGraphicData.Canvas canvas = 1;
|
||||||
|
repeated iscsGraphicData.Arrow arrows = 2;
|
||||||
|
repeated iscsGraphicData.IscsText iscsTexts = 3;
|
||||||
|
repeated iscsGraphicData.Rect rects = 4;
|
||||||
|
repeated ManualAlarmButton manualAlarmButtons = 5;
|
||||||
|
repeated HydrantAlarmButton hydrantAlarmButtons = 6;
|
||||||
|
repeated GasExtinguishing gasExtinguishings = 7;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
message ManualAlarmButton { //手动报警按钮
|
||||||
|
iscsGraphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message HydrantAlarmButton { //消防栓报警按钮
|
||||||
|
iscsGraphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message GasExtinguishing { //气体灭火
|
||||||
|
iscsGraphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SmokeDetector { //烟雾探测器
|
||||||
|
iscsGraphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message TemperatureDetector { //温度探测器
|
||||||
|
iscsGraphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
|
||||||
|
}
|
|
@ -1,11 +0,0 @@
|
||||||
syntax = "proto3";
|
|
||||||
import "iscs_graphic_data.proto";
|
|
||||||
|
|
||||||
package FireAlarmGraphicData;
|
|
||||||
|
|
||||||
message FireAlarmGraphicStorage {
|
|
||||||
iscsGraphicData.Canvas canvas = 1;
|
|
||||||
repeated iscsGraphicData.Arrow arrows = 2;
|
|
||||||
repeated iscsGraphicData.IscsText iscsTexts = 3;
|
|
||||||
repeated iscsGraphicData.Rect rects = 4;
|
|
||||||
}
|
|
Loading…
Reference in New Issue