iotgateway/Plugins/PluginInterface/IotDB/IotTsData.cs

20 lines
477 B
C#
Raw Normal View History

2022-06-06 07:15:19 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}