using SqlSugar; namespace Waste.Domain { /// /// 设备表 /// public class W_Device { /// /// 设备表 /// public W_Device() { } private System.Guid _Id; /// /// /// [SugarColumn(IsPrimaryKey = true)] public System.Guid Id { get { return this._Id; } set { this._Id = value; } } private System.String _FacEcode; /// /// 设备出厂编号 /// public System.String FacEcode { get { return this._FacEcode; } set { this._FacEcode = value?.Trim(); } } private System.String _Ecode; /// /// 设备编号 /// public System.String Ecode { get { return this._Ecode; } set { this._Ecode = value?.Trim(); } } private System.Int32 _DeviceType; /// /// 设备型号 /// public System.Int32 DeviceType { get { return this._DeviceType; } set { this._DeviceType = value; } } private System.String _Name; /// /// 设备名称 /// public System.String Name { get { return this._Name; } set { this._Name = value?.Trim(); } } private System.Guid _Businessid; /// /// 所属商户 /// public System.Guid Businessid { get { return this._Businessid; } set { this._Businessid = value; } } private System.Int32 _NetType; /// /// 联网方式,1-4G,2-Wifi /// public System.Int32 NetType { get { return this._NetType; } set { this._NetType = value; } } private System.String _Province; /// /// /// public System.String Province { get { return this._Province; } set { this._Province = value?.Trim(); } } private System.String _City; /// /// 城市 /// public System.String City { get { return this._City; } set { this._City = value?.Trim(); } } private System.String _Area; /// /// 区县 /// public System.String Area { get { return this._Area; } set { this._Area = value?.Trim(); } } private System.String _Address; /// /// 详细地址 /// public System.String Address { get { return this._Address; } set { this._Address = value?.Trim(); } } private System.String _Remark; /// /// 备注 /// public System.String Remark { get { return this._Remark; } set { this._Remark = value?.Trim(); } } private System.DateTime? _InstallTime; /// /// 安装到小区的时间 /// public System.DateTime? InstallTime { get { return this._InstallTime; } set { this._InstallTime = value; } } private System.DateTime? _ActiveTime; /// /// 激活时间 /// public System.DateTime? ActiveTime { get { return this._ActiveTime; } set { this._ActiveTime = value; } } private System.Int32 _Status; /// /// 设备状态,0-异常,1-正常 /// public System.Int32 Status { get { return this._Status; } set { this._Status = value; } } private System.DateTime? _LastHeartTime; /// /// 最近使用时间 /// public System.DateTime? LastHeartTime { get { return this._LastHeartTime; } set { this._LastHeartTime = value; } } private System.DateTime _CreateTime; /// /// 注册时间 /// public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } } private System.Decimal _Tare; /// /// 皮重,KG /// public System.Decimal Tare { get { return this._Tare; } set { this._Tare = value; } } } }