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