using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Eta
{
///
/// 分析状态
///
public enum eAnalyStatus
{
///
/// 未知状态(用于初始化)
///
Unkonw = -10,
///
/// 数据缺失
///
Missing = -2,
///
/// 分析错误
///
///Error = -1,
///
/// 数据异常(原来是1)tangxu
///
Abnormal = -3,
///
/// 正常
///
Normal = 0
}
}