using Ant.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
///
/// DeviceManage:实体类(属性说明自动提取数据库字段的描述信息)
///
[Table("DeviceManage")]
public partial class DeviceManage
{
public DeviceManage()
{ }
#region Model
private Guid _id;
private string _imei;
private string _ownedproducts;
private string _devicename;
private int? _nodetype;
private int? _state;
private DateTime? _lastonlinetime;
private DateTime? _addtime;
private string _imsi;
private string _iccid;
private DateTime? _lastofflinetime;
private string _province;
private string _city;
private string _area;
private decimal? _lastlat;
private decimal? _lastlng;
private decimal? _longitude;
private decimal? _latitude;
///
///
///
public Guid ID
{
set { _id = value; }
get { return _id; }
}
///
///
///
public string IMEI
{
set { _imei = value; }
get { return _imei; }
}
///
///
///
public string OwnedProducts
{
set { _ownedproducts = value; }
get { return _ownedproducts; }
}
///
///
///
public string DeviceName
{
set { _devicename = value; }
get { return _devicename; }
}
///
///
///
public int? NodeType
{
set { _nodetype = value; }
get { return _nodetype; }
}
///
///
///
public int? State
{
set { _state = value; }
get { return _state; }
}
///
///
///
public DateTime? LastOnlineTime
{
set { _lastonlinetime = value; }
get { return _lastonlinetime; }
}
///
///
///
public DateTime? AddTime
{
set { _addtime = value; }
get { return _addtime; }
}
///
///
///
public string IMSI
{
set { _imsi = value; }
get { return _imsi; }
}
///
///
///
public string ICCID
{
set { _iccid = value; }
get { return _iccid; }
}
///
///
///
public DateTime? LastOfflineTime
{
set { _lastofflinetime = value; }
get { return _lastofflinetime; }
}
///
///
///
public string Province
{
set { _province = value; }
get { return _province; }
}
///
///
///
public string City
{
set { _city = value; }
get { return _city; }
}
///
///
///
public string Area
{
set { _area = value; }
get { return _area; }
}
///
///
///
public decimal? LastLat
{
set { _lastlat = value; }
get { return _lastlat; }
}
///
///
///
public decimal? Lastlng
{
set { _lastlng = value; }
get { return _lastlng; }
}
///
///
///
public decimal? longitude
{
set { _longitude = value; }
get { return _longitude; }
}
///
///
///
public decimal? latitude
{
set { _latitude = value; }
get { return _latitude; }
}
///
/// 是否是LBS
///
public bool? IsLBS
{
get; set;
}
#endregion Model
}
}