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