namespace JiShe.CollectBus.IoTDB.Attributes { /// /// IoTDB实体存储路径或表名称,一般用于已经明确的存储路径或表名称,例如日志存储 /// [AttributeUsage(AttributeTargets.Class)] public class TableNameOrTreePathAttribute : System.Attribute { public string TableNameOrTreePath { get; } public TableNameOrTreePathAttribute(string tableNameOrTreePath) { TableNameOrTreePath = tableNameOrTreePath; } } }