using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.IoTDBProvider { /// /// 用于标识当前实体为单侧点模式,单侧点模式只有一个Filed标识字段,类型是Tuple,Item1=>测点名称,Item2=>测点值 /// [AttributeUsage(AttributeTargets.Property)] public class SingleMeasuringAttribute : Attribute { public string FieldName { get; set;} public SingleMeasuringAttribute(string fieldName) { FieldName = fieldName; } } }