using SqlSugar;
using System;
namespace Waste.Domain
{
///
/// 设备测量有关数据
///
[SugarTable("W_DeviceResult", TableDescription = "设备测量有关数据", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
public class W_DeviceResult
{
///
/// 设备ID
///
[SugarColumn(IsPrimaryKey = true)]
public Guid DeviceId { get; set; }
///
/// 最近使用的垃圾桶编号
///
[SugarColumn(ColumnDataType = "varchar(50)", ColumnDescription = "最近使用的垃圾桶编号")]
public string LastTrash { get; set; }
///
/// 最近使用时间
///
[SugarColumn(ColumnDescription = "最近使用时间")]
public DateTime LastHeartTime { get; set; }
///
/// 最近的记录ID
///
[SugarColumn(ColumnDescription = "最近的记录ID")]
public Guid ResultId { get; set; }
}
}