using SqlSugar; namespace Waste.Domain { /// /// 账户总计实时数据 /// public class W_RealData { /// /// 账户总计实时数据 /// public W_RealData() { } private System.Guid _Id; /// /// /// [SugarColumn(IsPrimaryKey = true)] public System.Guid Id { get { return this._Id; } set { this._Id = value; } } private System.Int32 _BusinessCnt; /// /// 商户数量 /// public System.Int32 BusinessCnt { get { return this._BusinessCnt; } set { this._BusinessCnt = value; } } private System.Int32 _DevCnt; /// /// 设备总数 /// public System.Int32 DevCnt { get { return this._DevCnt; } set { this._DevCnt = value; } } private System.Int32 _TodayDevActiveCnt; /// /// 今日活跃设备台数 /// public System.Int32 TodayDevActiveCnt { get { return this._TodayDevActiveCnt; } set { this._TodayDevActiveCnt = value; } } private System.Int32 _TodayCount; /// /// 今日投放次数 /// public System.Int32 TodayCount { get { return this._TodayCount; } set { this._TodayCount = value; } } private System.Decimal _TodayWeight; /// /// 今日投放重量 /// public System.Decimal TodayWeight { get { return this._TodayWeight; } set { this._TodayWeight = value; } } private System.Decimal _TodayPureWeight; /// /// 今日净重 /// public System.Decimal TodayPureWeight { get { return this._TodayPureWeight; } set { this._TodayPureWeight = value; } } private System.Int32 _TotalCount; /// /// 累计投放次数 /// public System.Int32 TotalCount { get { return this._TotalCount; } set { this._TotalCount = value; } } private System.Decimal _TotalWeight; /// /// 累计重量 /// public System.Decimal TotalWeight { get { return this._TotalWeight; } set { this._TotalWeight = value; } } private System.Decimal _TotalPureWeight; /// /// 累计净重 /// public System.Decimal TotalPureWeight { get { return this._TotalPureWeight; } set { this._TotalPureWeight = value; } } } }