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 BASE_DEVICE
|
{
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
public BASE_DEVICE()
|
{
|
ALERT_ALERT = new HashSet<ALERT_ALERT>();
|
}
|
|
public int ID { get; set; }
|
|
[StringLength(50)]
|
public string DEVICENAME { get; set; }
|
|
[StringLength(50)]
|
public string DEVICETYPE { get; set; }
|
|
public int? DEVICEID { get; set; }
|
|
public int? ISLOCK { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
public virtual ICollection<ALERT_ALERT> ALERT_ALERT { get; set; }
|
}
|
}
|