using HybirdFrameworkDriver.ModbusTcpMaster; namespace Service.Plc.Msg { public class PlcFault { public ModbusProperty ErrorCode01 { get; set; } = new(40701,length :2, value: 0); // 错误码 public ModbusProperty ErrorCode03 { get; set; } = new(40703,length :2, value: 0); // 错误码 public ModbusProperty ErrorCode05 { get; set; } = new(40705,length :2, value: 0); // 错误码 public ModbusProperty ErrorCode07 { get; set; } = new(40707,length :2, value: 0); // 错误码 public ModbusProperty ErrorCode09 { get; set; } = new(40709, length: 2, value: 0); // 错误码 } }