Admin
2025-12-02 9e42f0dafa019f5ecf6b0ff425ecb966b002171e
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
46
47
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
 
namespace WIDESEA_Common
{
    /// <summary>
    /// 连接设备状态
    /// </summary>
    public enum ConnectedEquipmentState
    {
        /// <summary>
        /// 未连接
        /// </summary>
        [Description("未连接")]
        NotConnected,
        /// <summary>
        /// 未激活
        /// </summary>
        [Description("未激活")]
        OFFLine,
        /// <summary>
        /// 空闲
        /// </summary>
        [Description("空闲")]
        Idle,
        /// <summary>
        /// 运行
        /// </summary>
        [Description("运行")]
        Running,
        /// <summary>
        /// 报警
        /// </summary>
        [Description("报警")]
        Warning,
        /// <summary>
        /// 手动
        /// </summary>
        [Description("手动")]
        Manual,
 
        [Description("关闭")]
        OFF,
    }
}