using SqlSugar;
namespace Waste.Domain
{
///
/// 商户统计
///
public class W_BusinessStatistics
{
///
/// 商户统计
///
public W_BusinessStatistics()
{
}
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.String _WasteType;
///
/// 垃圾类型
///
public System.String WasteType { get { return this._WasteType; } set { this._WasteType = value?.Trim(); } }
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.DateTime _CreateTime;
///
///
///
public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } }
}
}