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.

40 lines
987 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.FireCtrl.ModBusTcp
{
/// <summary>
/// 故障信息
/// </summary>
public class MFaultInformation
{
/// <summary>
/// 预留扩展低字节
/// </summary>
public byte F_ObligateLow { get; set; }
/// <summary>
/// 预留扩展高字节
/// </summary>
public byte F_ObligateHigh { get; set; }
/// <summary>
/// 防护区
/// </summary>
public byte F_ProtectiveArea { get; set; }
/// <summary>
/// 设备类型
/// </summary>
public byte F_DeviceType { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public byte F_DeviceNumber { get; set; }
/// <summary>
/// 故障码
/// </summary>
public byte F_FaultCode { get; set; }
}
}