17 lines
536 B
C#
Raw Normal View History

2025-04-17 20:28:50 +08:00
namespace JiShe.CollectBus.IoTDB.Attribute
2025-04-10 23:31:43 +08:00
{
/// <summary>
/// 用于标识当前实体为单侧点模式单侧点模式只有一个Filed标识字段,类型是Tuple<string,T>,Item1=>测点名称Item2=>测点值,泛型
2025-04-10 23:31:43 +08:00
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
2025-04-17 20:28:50 +08:00
public class SingleMeasuringAttribute : System.Attribute
2025-04-10 23:31:43 +08:00
{
2025-04-11 11:56:23 +08:00
public string FieldName { get; set;}
public SingleMeasuringAttribute(string fieldName)
{
FieldName = fieldName;
}
2025-04-10 23:31:43 +08:00
}
}