YW_AlarmInformation.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. /// YW_AlarmInformation:实体类(属性说明自动提取数据库字段的描述信息)
  11. /// </summary>
  12. [Table("YW_AlarmInformation")]
  13. public partial class YW_AlarmInformation
  14. {
  15. public YW_AlarmInformation()
  16. { }
  17. #region Model
  18. private Guid? _id;
  19. private string _title;
  20. private string _content;
  21. private DateTime? _add_time;
  22. private string _add_name;
  23. private int? _alarmtype;
  24. private string _fenceid;
  25. private int? _fencetype;
  26. private string _carid;
  27. /// <summary>
  28. ///
  29. /// </summary>
  30. [Column("ID", IsPrimaryKey = true)]
  31. public Guid? ID
  32. {
  33. set { _id = value; }
  34. get { return _id; }
  35. }
  36. /// <summary>
  37. /// 标题
  38. /// </summary>
  39. public string Title
  40. {
  41. set { _title = value; }
  42. get { return _title; }
  43. }
  44. /// <summary>
  45. /// 内容
  46. /// </summary>
  47. public string Content
  48. {
  49. set { _content = value; }
  50. get { return _content; }
  51. }
  52. /// <summary>
  53. /// 添加时间
  54. /// </summary>
  55. public DateTime? Add_Time
  56. {
  57. set { _add_time = value; }
  58. get { return _add_time; }
  59. }
  60. /// <summary>
  61. /// 添加人
  62. /// </summary>
  63. public string Add_Name
  64. {
  65. set { _add_name = value; }
  66. get { return _add_name; }
  67. }
  68. /// <summary>
  69. /// 报警类型
  70. /// </summary>
  71. public int? AlarmType
  72. {
  73. set { _alarmtype = value; }
  74. get { return _alarmtype; }
  75. }
  76. /// <summary>
  77. /// 围栏ID
  78. /// </summary>
  79. public string FenceId
  80. {
  81. set { _fenceid = value; }
  82. get { return _fenceid; }
  83. }
  84. /// <summary>
  85. /// 围栏类型
  86. /// </summary>
  87. public int? FenceType
  88. {
  89. set { _fencetype = value; }
  90. get { return _fencetype; }
  91. }
  92. /// <summary>
  93. /// 车辆ID
  94. /// </summary>
  95. public string CarId
  96. {
  97. set { _carid = value; }
  98. get { return _carid; }
  99. }
  100. /// <summary>
  101. /// 是否阅读
  102. /// </summary>
  103. public bool? IsRead
  104. {
  105. get; set;
  106. }
  107. #endregion Model
  108. }
  109. }