using SqlSugar; namespace YBDevice.Entity { /// /// 用户实时数据 /// [SugarTable("YB_UserRealData", TableDescription = "用户实时数据", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_UserRealData { /// /// /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public System.Int32 Id { get; set; } /// /// 用户ID /// [SugarColumn(ColumnDescription = "用户ID")] public System.Int32 UserId { get; set; } /// /// 最高运动步数 /// [SugarColumn(ColumnDescription = "最高运动步数")] public System.Int64 TopStep { get; set; } /// /// 最大运动步数时间,时间戳格式 /// [SugarColumn(ColumnDescription = "最大运动步数时间,时间戳格式")] public System.Int64 TopStepTime { get; set; } } }