EquipmentDataDto.cs
636 Bytes
namespace HHECS.DAQShared.Dto
{
public class EquipmentDataDto
{
public Guid Plmeid { get; set; }
public string EquipmentSN { get; set; } = null!;
/// <summary>
/// 数据提交时间戳/数据源时间戳
/// </summary>
/// <remarks>支持秒或毫秒</remarks>
public long Timestamp { get; set; }
/// <summary>
/// 数据数组
/// </summary>
public List<TagItemDto> Reported { get; set; } = new List<TagItemDto>();
/// <summary>
/// 版本号
/// </summary>
public int Version { get; set; }
}
}