mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-11-30 02:37:55 +08:00
20 lines
477 B
C#
20 lines
477 B
C#
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; }
|
||
}
|
||
}
|