namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("DEVEquipment")] public partial class DEVEquipment { public int id { get; set; } [Required] [StringLength(50)] public string equipid { get; set; } [StringLength(50)] public string equipname { get; set; } [StringLength(50)] public string serverip { get; set; } [StringLength(50)] public string serverport { get; set; } [StringLength(50)] public string localip { get; set; } [StringLength(50)] public string localport { get; set; } public int typeid { get; set; } [StringLength(50)] public string area { get; set; } public int status { get; set; } [StringLength(50)] public string displayname { get; set; } public virtual DEVEquipmentType DEVEquipmentType { get; set; } } }