DeviceManage.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. using Ant.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MES.Production.Entity
  8. {
  9. /// <summary>
  10. /// DeviceManage:实体类(属性说明自动提取数据库字段的描述信息)
  11. /// </summary>
  12. [Table("DeviceManage")]
  13. public partial class DeviceManage
  14. {
  15. public DeviceManage()
  16. { }
  17. #region Model
  18. private Guid _id;
  19. private string _imei;
  20. private string _ownedproducts;
  21. private string _devicename;
  22. private int? _nodetype;
  23. private int? _state;
  24. private DateTime? _lastonlinetime;
  25. private DateTime? _addtime;
  26. private string _imsi;
  27. private string _iccid;
  28. private DateTime? _lastofflinetime;
  29. private string _province;
  30. private string _city;
  31. private string _area;
  32. private decimal? _lastlat;
  33. private decimal? _lastlng;
  34. private decimal? _longitude;
  35. private decimal? _latitude;
  36. /// <summary>
  37. ///
  38. /// </summary>
  39. public Guid ID
  40. {
  41. set { _id = value; }
  42. get { return _id; }
  43. }
  44. /// <summary>
  45. ///
  46. /// </summary>
  47. public string IMEI
  48. {
  49. set { _imei = value; }
  50. get { return _imei; }
  51. }
  52. /// <summary>
  53. ///
  54. /// </summary>
  55. public string OwnedProducts
  56. {
  57. set { _ownedproducts = value; }
  58. get { return _ownedproducts; }
  59. }
  60. /// <summary>
  61. ///
  62. /// </summary>
  63. public string DeviceName
  64. {
  65. set { _devicename = value; }
  66. get { return _devicename; }
  67. }
  68. /// <summary>
  69. ///
  70. /// </summary>
  71. public int? NodeType
  72. {
  73. set { _nodetype = value; }
  74. get { return _nodetype; }
  75. }
  76. /// <summary>
  77. ///
  78. /// </summary>
  79. public int? State
  80. {
  81. set { _state = value; }
  82. get { return _state; }
  83. }
  84. /// <summary>
  85. ///
  86. /// </summary>
  87. public DateTime? LastOnlineTime
  88. {
  89. set { _lastonlinetime = value; }
  90. get { return _lastonlinetime; }
  91. }
  92. /// <summary>
  93. ///
  94. /// </summary>
  95. public DateTime? AddTime
  96. {
  97. set { _addtime = value; }
  98. get { return _addtime; }
  99. }
  100. /// <summary>
  101. ///
  102. /// </summary>
  103. public string IMSI
  104. {
  105. set { _imsi = value; }
  106. get { return _imsi; }
  107. }
  108. /// <summary>
  109. ///
  110. /// </summary>
  111. public string ICCID
  112. {
  113. set { _iccid = value; }
  114. get { return _iccid; }
  115. }
  116. /// <summary>
  117. ///
  118. /// </summary>
  119. public DateTime? LastOfflineTime
  120. {
  121. set { _lastofflinetime = value; }
  122. get { return _lastofflinetime; }
  123. }
  124. /// <summary>
  125. ///
  126. /// </summary>
  127. public string Province
  128. {
  129. set { _province = value; }
  130. get { return _province; }
  131. }
  132. /// <summary>
  133. ///
  134. /// </summary>
  135. public string City
  136. {
  137. set { _city = value; }
  138. get { return _city; }
  139. }
  140. /// <summary>
  141. ///
  142. /// </summary>
  143. public string Area
  144. {
  145. set { _area = value; }
  146. get { return _area; }
  147. }
  148. /// <summary>
  149. ///
  150. /// </summary>
  151. public decimal? LastLat
  152. {
  153. set { _lastlat = value; }
  154. get { return _lastlat; }
  155. }
  156. /// <summary>
  157. ///
  158. /// </summary>
  159. public decimal? Lastlng
  160. {
  161. set { _lastlng = value; }
  162. get { return _lastlng; }
  163. }
  164. /// <summary>
  165. ///
  166. /// </summary>
  167. public decimal? longitude
  168. {
  169. set { _longitude = value; }
  170. get { return _longitude; }
  171. }
  172. /// <summary>
  173. ///
  174. /// </summary>
  175. public decimal? latitude
  176. {
  177. set { _latitude = value; }
  178. get { return _latitude; }
  179. }
  180. /// <summary>
  181. /// 是否是LBS
  182. /// </summary>
  183. public bool? IsLBS
  184. {
  185. get; set;
  186. }
  187. #endregion Model
  188. }
  189. }