2025-05-08 17:21:20 +08:00
|
|
|
|
|
2025-05-08 14:42:13 +08:00
|
|
|
|
namespace JiShe.CollectBus.IoTDB.Attributes
|
2025-04-21 14:57:12 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// IoTDB实体存储路径或表名称,一般用于已经明确的存储路径或表名称,例如日志存储
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
|
|
|
|
public class TableNameOrTreePathAttribute : System.Attribute
|
|
|
|
|
|
{
|
|
|
|
|
|
public string TableNameOrTreePath { get; }
|
|
|
|
|
|
|
|
|
|
|
|
public TableNameOrTreePathAttribute(string tableNameOrTreePath)
|
|
|
|
|
|
{
|
|
|
|
|
|
TableNameOrTreePath = tableNameOrTreePath;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|