using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class TcpHeartbeatDatum
{
///
/// 主键ID
///
public long Id { get; set; }
///
/// 工作状态
///
public string? WorkStatus { get; set; }
///
/// 实时值
///
public string? RealTimeValue { get; set; }
///
/// 环境值
///
public string? EnvValue { get; set; }
///
/// 背景值
///
public string? BgValue { get; set; }
///
/// 差值
///
public string? DiffValue { get; set; }
///
/// 浓度百分比
///
public string? NongDuBaiFenBi { get; set; }
///
/// 稳定状态
///
public string? StableStatus { get; set; }
///
/// 阈值1
///
public string? ThresholdValue1 { get; set; }
///
/// 阈值2
///
public string? ThresholdValue2 { get; set; }
///
/// MCU温度
///
public string? McuT { get; set; }
///
/// 故障检查
///
public string? GuZhangCheck { get; set; }
///
/// 温度
///
public string? Temperature { get; set; }
///
/// 湿度
///
public string? Humidity { get; set; }
///
/// 是否有人
///
public string? AnyHuman { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 原始数据ID
///
public long? OriginalDataId { get; set; }
///
/// 设备ID
///
public string? DeviceId { get; set; }
///
/// ADC原始值
///
public string? AdcOriginalValuue { get; set; }
///
/// 错误代码
///
public string? ErrorCode { get; set; }
}