初始化
This commit is contained in:
39
TcpServer/incident.cs
Normal file
39
TcpServer/incident.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TcpServer
|
||||
{
|
||||
/// <summary>
|
||||
/// 事件追踪类型
|
||||
/// </summary>
|
||||
public static class incident
|
||||
{
|
||||
///<summary>
|
||||
/// 事件追踪类型-设备在线状态变化
|
||||
/// </summary>
|
||||
public static string _eventTypeDevOnline = "DEV_ONLINE";
|
||||
|
||||
/// <summary>
|
||||
/// 事件追踪类型-设备状态变化
|
||||
/// </summary>
|
||||
public static string _eventTypeDevStatus = "DEV_STATUS";
|
||||
|
||||
/// <summary>
|
||||
/// 事件追踪类型-设备操作
|
||||
/// </summary>
|
||||
public static string _eventTypeDevControl = "DEV_OPERATION";
|
||||
|
||||
/// <summary>
|
||||
/// 事件追踪类型-设备升级
|
||||
/// </summary>
|
||||
public static string _eventTypeDevUpgrade = "DEV_UPGRADE";
|
||||
|
||||
/// <summary>
|
||||
/// 事件追踪类型-设备通讯测试
|
||||
/// </summary>
|
||||
public static string _eventTypeDevConnTest = "DEV_CONNTEST";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user