EquipmentDataV2Dto.cs
903 Bytes
using HHECS.DAQShared.Dto;
namespace HHECS.DAQServer.Dto.Equipment
{
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<TagItemDto> Reported { get; set; } = new List<TagItemDto>();
/// <summary>
/// 版本号
/// </summary>
public int Version { get; set; }
}
}