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.
27 lines
627 B
27 lines
627 B
5 months ago
|
using HybirdFrameworkDriver.ModbusTcpMaster;
|
||
|
|
||
|
namespace Service.FireControl.Msg;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 3.2数据列表0x03
|
||
|
/// </summary>
|
||
|
public class Subzone3
|
||
|
{
|
||
|
#region
|
||
|
|
||
|
/// <summary>
|
||
|
/// 总报警个数
|
||
|
/// </summary>
|
||
|
public ModbusProperty<short> TotalNumberOfAlarms { get; set; } = new(0x0001);
|
||
|
/// <summary>
|
||
|
/// 总故障个数
|
||
|
/// </summary>
|
||
|
public ModbusProperty<short> TotalNumberOfFailures { get; set; } = new(0x0002);
|
||
|
/// <summary>
|
||
|
/// 总探测器个数
|
||
|
/// </summary>
|
||
|
public ModbusProperty<short> TotalNumberOfDetectors { get; set; } = new(0x0003);
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
}
|