using System;
using System.Collections.Generic;
using System.Text;
namespace IceCoffee.HJ212.Models
{
    /// 
    /// 回应代码集
    /// 
    public enum ResponseCode
    {
        /// 
        /// 执行成功
        /// 
        ExecSucceeded = 1,
        /// 
        /// 执行失败,但不知道原因
        /// 
        ExecutionFailed_DoNotKnowReason = 2,
        /// 
        /// 执行失败,命令请求条件错误
        /// 
        ExecutionFailed_InvalidCommand = 3,
        /// 
        /// 通讯超时
        /// 
        CommunicationTimeout = 4,
        /// 
        /// 系统繁忙不能执行
        /// 
        SystemBusy = 5,
        /// 
        /// 系统时间异常
        /// 
        InvalidSystemTime = 6,
        /// 
        /// 没有数据
        /// 
        NoneData = 100,
        /// 
        /// 心跳包
        /// 
        HeartbeatPackage = 300
    }
}