73 lines
2.3 KiB
C#
73 lines
2.3 KiB
C#
|
|
using SqlSugar;
|
||
|
|
|
||
|
|
namespace Waste.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 设备实时数据
|
||
|
|
/// </summary>
|
||
|
|
public class W_DeviceRealData
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 设备实时数据
|
||
|
|
/// </summary>
|
||
|
|
public W_DeviceRealData()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
private System.Guid _Id;
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
|
public System.Guid Id { get { return this._Id; } set { this._Id = value; } }
|
||
|
|
|
||
|
|
private System.Guid _DeviceId;
|
||
|
|
/// <summary>
|
||
|
|
/// 设备ID
|
||
|
|
/// </summary>
|
||
|
|
public System.Guid DeviceId { get { return this._DeviceId; } set { this._DeviceId = value; } }
|
||
|
|
|
||
|
|
private System.Guid _BusinessId;
|
||
|
|
/// <summary>
|
||
|
|
/// 商户ID
|
||
|
|
/// </summary>
|
||
|
|
public System.Guid BusinessId { get { return this._BusinessId; } set { this._BusinessId = value; } }
|
||
|
|
|
||
|
|
private System.Int32 _TodayCount;
|
||
|
|
/// <summary>
|
||
|
|
/// 今日次数
|
||
|
|
/// </summary>
|
||
|
|
public System.Int32 TodayCount { get { return this._TodayCount; } set { this._TodayCount = value; } }
|
||
|
|
|
||
|
|
private System.Int32 _TotalCount;
|
||
|
|
/// <summary>
|
||
|
|
/// 累计次数
|
||
|
|
/// </summary>
|
||
|
|
public System.Int32 TotalCount { get { return this._TotalCount; } set { this._TotalCount = value; } }
|
||
|
|
|
||
|
|
private System.Decimal _TodayWeigth;
|
||
|
|
/// <summary>
|
||
|
|
/// 今日重量
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal TodayWeigth { get { return this._TodayWeigth; } set { this._TodayWeigth = value; } }
|
||
|
|
|
||
|
|
private System.Decimal _TotalWeight;
|
||
|
|
/// <summary>
|
||
|
|
/// 累计投放重量
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal TotalWeight { get { return this._TotalWeight; } set { this._TotalWeight = value; } }
|
||
|
|
|
||
|
|
private System.Decimal _TodayPureWeight;
|
||
|
|
/// <summary>
|
||
|
|
/// 今日净重
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal TodayPureWeight { get { return this._TodayPureWeight; } set { this._TodayPureWeight = value; } }
|
||
|
|
|
||
|
|
private System.Decimal _TotalPureWeight;
|
||
|
|
/// <summary>
|
||
|
|
/// 累计净重
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal TotalPureWeight { get { return this._TotalPureWeight; } set { this._TotalPureWeight = value; } }
|
||
|
|
}
|
||
|
|
}
|