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