using SqlSugar; namespace DS.WMS.Core.OpenApiModule.Entity; /// /// /// [SugarTable("tb_HKThermometry")] public partial class tb_HKThermometry { public tb_HKThermometry() { } [SugarColumn(IsPrimaryKey = true)] public Guid RelationId { get; set; } /// /// 设备通道名称 /// public string ChannelName { get; set; } /// /// 设备通道号 /// public int? ChannelID { get; set; } /// /// 数据模型标识 /// public string DataType { get; set; } /// /// 数据触发时间 /// public DateTime? DateTime { get; set; } /// /// 事件类型 /// public string EventType { get; set; } /// /// 事件类型名称 /// public string EventDescription { get; set; } /// /// 设备的IP地址 /// public string IpAddress { get; set; } /// /// 设备端口号 /// public int? PortNo { get; set; } /// /// 数据接收时间 /// public DateTime? RecvTime { get; set; } /// /// 数据发送时间 /// public DateTime? SendTime { get; set; } /// /// 温度报警等待时间,单位秒,范围0-200秒,默认0秒 /// public int? AlarmFilterTime { get; set; } /// /// 0-预警,1-报警 /// public int? AlarmLevel { get; set; } /// /// 规则,0-大于,1-小于 /// public int? AlarmRule { get; set; } /// /// 报警类型,0-最高温度,1-最低温度,2-平均温度,3-温差,4-温度突升,5-温度突降 /// public int? AlarmType { get; set; } /// /// 温度预警等待时间,单位秒,范围0-200秒,默认0秒 /// public int? AlertFilterTime { get; set; } /// /// 当前温度 /// public string CurTemperature { get; set; } /// /// 规定温度 /// public string RuleTemperature { get; set; } /// /// 测温单位,0-摄氏度℃,1-华氏度℉,3-开尔文K /// public int? ThermometryUnit { get; set; } /// /// 容差温度,精确到小数点后一位(-40-1000)(浮点数+100) /// public string ToleranceTemperature { get; set; } /// /// 状态 0 未处理 1 已忽略 2 已通知 /// public int? Status { get; set; } = 0; }