28 lines
507 B
C#
Raw Permalink Normal View History

2025-04-21 09:45:30 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace JiShe.CollectBus.Analyzers.Shared
2025-04-21 09:45:30 +08:00
{
/// <summary>
/// 实体类型枚举
2025-04-21 09:45:30 +08:00
/// </summary>
public enum EntityTypeEnum
{
/// <summary>
/// IoTDB树模型
2025-04-21 09:45:30 +08:00
/// </summary>
TreeModel = 1,
/// <summary>
/// IoTDB表模型
2025-04-21 09:45:30 +08:00
/// </summary>
TableModel = 2,
/// <summary>
/// 其他情况
/// </summary>
Other = 3
2025-04-21 09:45:30 +08:00
}
}