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