using SqlSugar; namespace Waste.Domain { /// /// 商户消息推送 /// public class W_BusinessPush { /// /// 商户消息推送 /// public W_BusinessPush() { } private System.Guid _BusinessId; /// /// /// public System.Guid BusinessId { get { return this._BusinessId; } set { this._BusinessId = value; } } private System.String _PushUrl; /// /// 推送地址 /// public System.String PushUrl { get { return this._PushUrl; } set { this._PushUrl = value?.Trim(); } } private System.String _DevCode; /// /// 设备唯一编号 /// public System.String DevCode { get { return this._DevCode; } set { this._DevCode = value?.Trim(); } } private System.String _DevName; /// /// 设备名称 /// public System.String DevName { get { return this._DevName; } set { this._DevName = value?.Trim(); } } private System.String _Address; /// /// 设备地址 /// public System.String Address { get { return this._Address; } set { this._Address = value?.Trim(); } } private System.Decimal _Weight; /// /// 毛重 /// public System.Decimal Weight { get { return this._Weight; } set { this._Weight = value; } } private System.Decimal _Tare; /// /// 皮重 /// public System.Decimal Tare { get { return this._Tare; } set { this._Tare = value; } } private System.Decimal _PWeight; /// /// 净重 /// public System.Decimal PWeight { get { return this._PWeight; } set { this._PWeight = value; } } private System.String _Type; /// /// 垃圾类型 /// public System.String Type { get { return this._Type; } set { this._Type = value?.Trim(); } } private System.DateTime _Time; /// /// 测量时间 /// public System.DateTime Time { get { return this._Time; } set { this._Time = value; } } private System.Int32 _Cnt; /// /// 重试推送的次数 /// public System.Int32 Cnt { get { return this._Cnt; } set { this._Cnt = value; } } private System.DateTime _CreateTime; /// /// 添加时间 /// public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } } } }