ERRNOs.cs 1.42 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
using FLY.OBJComponents.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FLY.IBC.Common
{
    public static class ERRNOs
    {
        static ERRNOs()
        {
            ERRNO_PLC_DISCONNECTED = new ERRNO() { Code = 255, Descrption = "IBC PLC连接断开" };
            ERRNO_INLETAIR_MOTOR = new ERRNO() { Code = 0, Descrption = "进风变频故障报警" };
            ERRNO_OUTLETAIR_MOTOR = new ERRNO() { Code = 1, Descrption = "出风变频故障报警" };
            ERRNO_INLETAIR_COMM = new ERRNO() { Code = 3, Descrption = "进风变频通讯报警" };
            ERRNO_OUTLETAIR_COMM = new ERRNO() { Code = 4, Descrption = "出风变频通讯报警" };
        }
        #region 报警类型
        /// <summary>
        /// PLC连接断开
        /// </summary>
        public static ERRNO ERRNO_PLC_DISCONNECTED;
        /// <summary>
        /// 进风变频故障报警
        /// </summary>
        public static ERRNO ERRNO_INLETAIR_MOTOR;
        /// <summary>
        /// 出风变频故障报警
        /// </summary>
        public static ERRNO ERRNO_OUTLETAIR_MOTOR;
        /// <summary>
        /// 进风变频通讯报警
        /// </summary>
        public static ERRNO ERRNO_INLETAIR_COMM;
        /// <summary>
        /// 出风变频通讯报警
        /// </summary>
        public static ERRNO ERRNO_OUTLETAIR_COMM;
        
        #endregion


    }
}