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.

25 lines
1.8 KiB

5 months ago
using HybirdFrameworkDriver.ModbusTcpMaster;
namespace Service.Plc.Msg
5 months ago
{
public class PlcFault
{
5 months ago
public ModbusProperty<int> ErrorCode01 { get; set; } = new(40701,length :2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode02 { get; set; } = new(40703,length :2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode03 { get; set; } = new(40705,length :2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode04 { get; set; } = new(40707,length :2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode05 { get; set; } = new(40709, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode06 { get; set; } = new(40711, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode07 { get; set; } = new(40713, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode08 { get; set; } = new(40715, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode09 { get; set; } = new(40717, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode10 { get; set; } = new(40719, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode11 { get; set; } = new(40721, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode12 { get; set; } = new(40723, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode13 { get; set; } = new(40725, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode14 { get; set; } = new(40727, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode15 { get; set; } = new(40729, length: 2, value: 0); // 错误码
public ModbusProperty<int> ErrorCode16 { get; set; } = new(40731, length: 2, value: 0); // 错误码
5 months ago
}
}