using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Module.FireCtrl.ModBusTcp { /// /// 分区信息 /// public class MPartitionValue { /// /// 预留 /// public ushort F_Obligate { get; set; } /// /// 防护区 /// public ushort F_ProtectiveArea { get; set; } /// /// 报警等级 /// public ushort F_AlarmLevel { get; set; } /// /// 手动启动 /// public ushort F_StartManually { get; set; } /// /// 手动急停 /// public ushort F_EmergencyStop { get; set; } /// /// 启动控制信号 /// public ushort F_BootControl { get; set; } /// /// 延时 /// public ushort F_Delay { get; set; } /// /// 剩余延时时间-s /// public ushort F_DelayTime { get; set; } /// /// 启动喷洒 /// public ushort F_StartSpraying { get; set; } } }