namespace IWareDataAccess.EF { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class ALERT_ALERT { public int ID { get; set; } [StringLength(50)] public string ALERTNAME { get; set; } public int? ALERTDEVICEID { get; set; } [StringLength(50)] public string ALERTDES { get; set; } public DateTime? CREATETIME { get; set; } public DateTime? FINISHTIME { get; set; } public int? TOTALTIME { get; set; } [StringLength(50)] public string ALERTCODE { get; set; } public int? HASDONE { get; set; } public virtual BASE_DEVICE BASE_DEVICE { get; set; } } }