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