using FLY.OBJComponents.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FLY.Weight.Common
{
public static class ERRNOs
{
static ERRNOs()
{
ERRNO_PLC_DISCONNECTED = new ERRNO() { Code = 255, Descrption = "称重 PLC连接断开" };
ERRNO_PLC_REG = new ERRNO() { Code = 0, Descrption = "通过 PLC寄存器 触发的报警信息" };
}
///
/// PLC连接断开
///
public static ERRNO ERRNO_PLC_DISCONNECTED;
///
/// 通过 PLC寄存器 触发的报警信息
///
public static ERRNO ERRNO_PLC_REG;
}
}