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