using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// YW_AlarmInformation:实体类(属性说明自动提取数据库字段的描述信息) /// [Table("YW_AlarmInformation")] public partial class YW_AlarmInformation { public YW_AlarmInformation() { } #region Model private Guid? _id; private string _title; private string _content; private DateTime? _add_time; private string _add_name; private int? _alarmtype; private string _fenceid; private int? _fencetype; private string _carid; /// /// /// [Column("ID", IsPrimaryKey = true)] public Guid? ID { set { _id = value; } get { return _id; } } /// /// 标题 /// public string Title { set { _title = value; } get { return _title; } } /// /// 内容 /// public string Content { set { _content = value; } get { return _content; } } /// /// 添加时间 /// public DateTime? Add_Time { set { _add_time = value; } get { return _add_time; } } /// /// 添加人 /// public string Add_Name { set { _add_name = value; } get { return _add_name; } } /// /// 报警类型 /// public int? AlarmType { set { _alarmtype = value; } get { return _alarmtype; } } /// /// 围栏ID /// public string FenceId { set { _fenceid = value; } get { return _fenceid; } } /// /// 围栏类型 /// public int? FenceType { set { _fencetype = value; } get { return _fencetype; } } /// /// 车辆ID /// public string CarId { set { _carid = value; } get { return _carid; } } /// /// 是否阅读 /// public bool? IsRead { get; set; } #endregion Model } }