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