You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using HybirdFrameworkDriver.ModbusTcpMaster;
namespace Service.Fire.Msg;
public class FireMsg
{
/// <summary>
/// 1房复合探测器光电探测器
/// </summary>
public ModbusProperty<ushort> EqmInfo01 { get; set; } = new(1);
/// <summary>
/// 2房复合探测器感温探测器
/// </summary>
public ModbusProperty<ushort> EqmInfo02 { get; set; } = new(2);
/// <summary>
/// 3房复合探测器光电探测器
/// </summary>
public ModbusProperty<ushort> EqmInfo03 { get; set; } = new(3);
/// <summary>
/// 4房复合探测器感温探测器
/// </summary>
public ModbusProperty<ushort> EqmInfo04 { get; set; } = new(4);
/// <summary>
/// 5房复合探测器光电探测器
/// </summary>
public ModbusProperty<ushort> EqmInfo05 { get; set; } = new(5);
/// <summary>
/// 6房复合探测器感温探测器
/// </summary>
public ModbusProperty<ushort> EqmInfo06 { get; set; } = new(6);
/// <summary>
/// 7房光电探测器光电探测器
/// </summary>
public ModbusProperty<ushort> EqmInfo07 { get; set; } = new(7);
/// <summary>
/// 8房手报按钮手动按钮
/// </summary>
public ModbusProperty<ushort> EqmInfo08 { get; set; } = new(8);
/// <summary>
/// 9房启停按钮启停按钮
/// </summary>
public ModbusProperty<ushort> EqmInfo09 { get; set; } = new(9);
/// <summary>
/// 10房声光报警器声光报警器
/// </summary>
public ModbusProperty<ushort> EqmInfo10 { get; set; } = new(10);
/// <summary>
/// 11房输出模块状态指示灯
/// </summary>
public ModbusProperty<ushort> EqmInfo11 { get; set; } = new(11);
/// <summary>
/// 12房火灾显示盘区域显示盘
/// </summary>
public ModbusProperty<ushort> EqmInfo12 { get; set; } = new(12);
}