iotgateway/Plugins/PluginInterface/IotDB/IotTsData.cs
2022-08-11 00:07:30 +08:00

14 lines
362 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace PluginInterface.IotDB
{
/// <summary>
/// IotDB时序数据库测点数据json定义
/// </summary>
public class IotTsData
{
public string device { get; set; }
public List<string>? measurements { get; set; }
public List<object>? values { get; set; }
public long timestamp { get; set; }
}
}