Files
IOT_API/Model/Dto/Inspection/TemperatureBoxDataDto.cs
T

36 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Model.Dto.Inspection
{
/// <summary>
/// 温度箱看板数据 DTOId 由 long 改为 string,避免前端精度丢失)
/// </summary>
public class TemperatureBoxDataDto
{
/// <summary>主键 Idlong → string</summary>
public string Id { get; set; }
/// <summary>删除状态(0、未删除;1、已删除)</summary>
public byte IsDel { get; set; }
/// <summary>采集时间</summary>
public DateTime? CreateTime { get; set; }
/// <summary>设备标识</summary>
public string DeviceCode { get; set; }
/// <summary>设备类型</summary>
public string DeviceType { get; set; }
/// <summary>设备温度(℃)</summary>
public double? DeviceTemperature { get; set; }
/// <summary>设备湿度(%</summary>
public double? DeviceHumidity { get; set; }
/// <summary>设备状态</summary>
public string Status { get; set; }
/// <summary>设备告警信息</summary>
public string AlarmInfo { get; set; }
}
}