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