mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-11-29 18:28:09 +08:00
14 lines
362 B
C#
14 lines
362 B
C#
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; }
|
||
}
|
||
}
|