using HybirdFrameworkDriver.ModbusTcpMaster; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HybirdFrameworkServices.Plc { public class PlcFault { public ModbusProperty ErrorCode01 { get; set; } = new(40701); // 错误码 public ModbusProperty ErrorCode02 { get; set; } = new(40702); // 错误码 public ModbusProperty ErrorCode03 { get; set; } = new(40703); // 错误码 public ModbusProperty ErrorCode04 { get; set; } = new(40704); // 错误码 public ModbusProperty ErrorCode05 { get; set; } = new(40705); // 错误码 public ModbusProperty ErrorCode06 { get; set; } = new(40706); // 错误码 public ModbusProperty ErrorCode07 { get; set; } = new(40707); // 错误码 public ModbusProperty ErrorCode08 { get; set; } = new(40708); // 错误码 public ModbusProperty ErrorCode09 { get; set; } = new(40709); // 错误码 public ModbusProperty ErrorCode10 { get; set; } = new(40710); // 错误码 } }