EquipmentDataV2Dto.cs
859 Bytes
namespace HHECS.DAQClient.Dto
{
public class EquipmentDataV2Dto
{
public Guid Plmeid { get; set; }
public string EquipmentSN { get; set; } = null!;
/// <summary>
/// 数据提交时间戳/数据源时间戳 开始时间
/// </summary>
/// <remarks>支持秒或毫秒</remarks>
public long TimestampStart { get; set; }
/// <summary>
/// 数据提交时间戳/数据源时间戳 结束时间
/// </summary>
/// <remarks>支持秒或毫秒</remarks>
public long TimestampEnd { get; set; }
/// <summary>
/// 数据数组
/// </summary>
public List<TagItem> Reported { get; set; } = new List<TagItem>();
/// <summary>
/// 版本号
/// </summary>
public int Version { get; set; }
}
}