17 lines
358 B
C#
17 lines
358 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.IoTDBProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Column分类标记特性(TAG字段)
|
|||
|
|
/// </summary>
|
|||
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|||
|
|
public class TAGColumnAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|