iotgateway/Plugins/PluginInterface/IotDB/IotTsData.cs

14 lines
362 B
C#
Raw Normal View History

2022-08-10 16:07:30 +00:00
namespace PluginInterface.IotDB
2022-06-06 07:15:19 +00:00
{
/// <summary>
/// IotDB时序数据库测点数据json定义
/// </summary>
public class IotTsData
{
public string device { get; set; }
2022-08-10 16:07:30 +00:00
public List<string>? measurements { get; set; }
public List<object>? values { get; set; }
2022-06-06 07:15:19 +00:00
public long timestamp { get; set; }
}
}