From 2896028ab268260cbce2725503686bf399228d37 Mon Sep 17 00:00:00 2001 From: joylink_fanyuhong <18706759286@163.com> Date: Wed, 16 Oct 2024 16:38:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0fas=E8=AE=BE=E5=A4=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/iscs_graphic_data.proto | 131 ++++++++++++++++++++++++++++++++++++ 1 file changed, 131 insertions(+) diff --git a/src/iscs_graphic_data.proto b/src/iscs_graphic_data.proto index df180db..1d276f1 100644 --- a/src/iscs_graphic_data.proto +++ b/src/iscs_graphic_data.proto @@ -126,3 +126,134 @@ message FASOfPlatformAlarmStorage { CommonGraphicStorage commonGraphicStorage = 3; string partition = 4; // 分区 } + +// 火灾故障控制主机 +message FasFailureControlHost { + common.CommonInfo common = 1; + string code = 2; +} + +//警铃 +message FasAlarm { + common.CommonInfo common = 1; + string code = 2; +} + +//防火卷帘 +message FireShutter { + enum ShutterType { + partition = 0; //隔断型 + dispersal = 1; //疏散型 + } + common.CommonInfo common = 1; + string code = 2; + ShutterType type = 3; +} + +// 消防泵 +message FirePump { + common.CommonInfo common = 1; + string code = 2; +} + +// 喷淋泵 +message SprayPump { + common.CommonInfo common = 1; + string code = 2; +} + +// 稳压泵 +messgae StabilizedPressurePump { + common.CommonInfo common = 1; + string code = 2; +} + +// ACS +message Acs { + common.CommonInfo common = 1; + string code = 2; +} + +// AFC +message Afc { + common.CommonInfo common = 1; + string code = 2; +} + +// 非消防电源 +message NonFirePowerSupply { + common.CommonInfo common = 1; + string code = 2; +} + +// 水流指示器 +message WaterFlowIndicator { + common.CommonInfo common = 1; + string code = 2; +} + +// 信号蝶阀 +message SignalButterflyValve { + common.CommonInfo common = 1; + string code = 2; +} + +// 压力开关 +message PressureSwitch { + common.CommonInfo common = 1; + string code = 2; +} + +// 故障阀 +message FaultValve { + common.CommonInfo common = 1; + string code = 2; +} + +// 启泵按钮 +message StartPumpButton { + common.CommonInfo common = 1; + string code = 2; +} + +// 感温电缆 +message TemperatureCable { + common.CommonInfo common = 1; + string code = 2; +} + +// 应急照明 +message EmergencyLighting { + common.CommonInfo common = 1; + string code = 2; +} + +// 电梯归首 +message ElevatorLiftToTop { + common.CommonInfo common = 1; + string code = 2; +} + +// 电动蝶阀 +message ElectricButterflyValve { + common.CommonInfo common = 1; + string code = 2; +} + +// 防火阀 +message FireValve { + common.CommonInfo common = 1; + string code = 2; +} + +// 电动防烟防火阀 +message ElectricFireExtinguishingValve { + common.CommonInfo common = 1; + string code = 2; +} + +// 火灾互联互通信号 +message FireIntercommunicationSignal { + common.CommonInfo common = 1; + string code = 2; +}