using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YBDevice.Entity
{
///
/// 用户最近的测量信息
///
[SugarTable("YB_UserLastData", TableDescription = "用户最近的测量信息", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
public class YB_UserLastData
{
///
/// 用户ID
///
[SugarColumn(ColumnDescription = "用户ID",IsPrimaryKey =true)]
public int UserId { get; set; }
///
/// 最近的记录ID
///
[SugarColumn(ColumnDescription = "最近的记录ID")]
public Guid LastResultId { get; set; }
///
/// 最近的记录时间
///
[SugarColumn(ColumnDescription = "最近的记录时间")]
public DateTime LastResultTime { get; set; }
}
}