Waste/Waste.Domain/DataModel/W_DeviceStatistics.cs

67 lines
2.0 KiB
C#
Raw Normal View History

2021-05-27 16:58:40 +08:00
using SqlSugar;
namespace Waste.Domain
{
/// <summary>
/// 设备统计
/// </summary>
public class W_DeviceStatistics
{
/// <summary>
/// 设备统计
/// </summary>
public W_DeviceStatistics()
{
}
private System.Int32 _Id;
/// <summary>
///
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public System.Int32 Id { get { return this._Id; } set { this._Id = value; } }
private System.Guid _Businessid;
/// <summary>
/// 商户ID
/// </summary>
public System.Guid Businessid { get { return this._Businessid; } set { this._Businessid = value; } }
private System.Guid _DevId;
/// <summary>
/// 设备ID
/// </summary>
public System.Guid DevId { get { return this._DevId; } set { this._DevId = value; } }
private System.Int32 _DayCount;
/// <summary>
/// 测量次数
/// </summary>
public System.Int32 DayCount { get { return this._DayCount; } set { this._DayCount = value; } }
private System.Decimal _DayWeight;
/// <summary>
/// 测量重量
/// </summary>
public System.Decimal DayWeight { get { return this._DayWeight; } set { this._DayWeight = value; } }
private System.Decimal _DayPureWeight;
/// <summary>
/// 测量净重
/// </summary>
public System.Decimal DayPureWeight { get { return this._DayPureWeight; } set { this._DayPureWeight = value; } }
private System.String _WasteType;
/// <summary>
/// 垃圾类型
/// </summary>
public System.String WasteType { get { return this._WasteType; } set { this._WasteType = value?.Trim(); } }
private System.DateTime _CreateTime;
/// <summary>
/// 日期
/// </summary>
public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } }
}
}