using SqlSugar; namespace YBDevice.Entity { /// /// 设备日统计数据 /// [SugarTable("YB_DeviceDayReportData", TableDescription = "设备日统计数据", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_DeviceDayReportData { /// /// /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public System.Int32 Id { get; set; } /// /// 测量次数 /// [SugarColumn(ColumnDescription = "测量次数")] public System.Int32 DayResultCnt { get; set; } /// /// 收益,分 /// [SugarColumn(ColumnDescription = "收益,分", ColumnDataType = "decimal(18,2)")] public System.Decimal DayInCome { get; set; } /// /// 设备ID /// [SugarColumn(ColumnDescription = "设备ID")] public System.Int32 DevId { get; set; } /// /// 商户ID /// [SugarColumn(ColumnDescription = "商户ID")] public System.Int32 BusinessId { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnDescription = "记录时间")] public System.DateTime RecordTime { get; set; } } }