初始化

This commit is contained in:
2025-11-26 11:18:26 +08:00
commit 0564b8c1f3
579 changed files with 346253 additions and 0 deletions

39
TcpServer/incident.cs Normal file
View 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";
}
}