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