using SqlSugar;
namespace Waste.Domain
{
///
/// 投放记录
///
public class W_Result
{
///
/// 投放记录
///
public W_Result()
{
}
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;
///
/// 设备所属商户
///
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.Decimal _Tare;
///
/// 皮重,单位KG
///
public System.Decimal Tare { get { return this._Tare; } set { this._Tare = value; } }
private System.Decimal _GrossWeight;
///
/// 毛重
///
public System.Decimal GrossWeight { get { return this._GrossWeight; } set { this._GrossWeight = value; } }
private System.Decimal _NetWeight;
///
/// 净重
///
public System.Decimal NetWeight { get { return this._NetWeight; } set { this._NetWeight = value; } }
private System.String _Registration;
///
/// 车牌号
///
public System.String Registration { get { return this._Registration; } set { this._Registration = value?.Trim(); } }
private System.DateTime _CreateTime;
///
/// 上报时间
///
public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } }
}
}