28 lines
507 B
C#
28 lines
507 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace JiShe.CollectBus.Analyzers.Shared
|
|
{
|
|
/// <summary>
|
|
/// 实体类型枚举
|
|
/// </summary>
|
|
public enum EntityTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// IoTDB树模型
|
|
/// </summary>
|
|
TreeModel = 1,
|
|
|
|
/// <summary>
|
|
/// IoTDB表模型
|
|
/// </summary>
|
|
TableModel = 2,
|
|
|
|
/// <summary>
|
|
/// 其他情况
|
|
/// </summary>
|
|
Other = 3
|
|
}
|
|
}
|