namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("BASEPlace")] public partial class BASEPlace { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public BASEPlace() { BASEPlaceVoidLabels = new HashSet(); } public int id { get; set; } [Required] [StringLength(50)] public string code { get; set; } public int typeid { get; set; } public int row { get; set; } public int col { get; set; } public int layer { get; set; } public decimal width { get; set; } public decimal length { get; set; } public decimal height { get; set; } public decimal maxweight { get; set; } public int heightlevel { get; set; } public int posx { get; set; } public int posy { get; set; } public int posz { get; set; } public int status { get; set; } public int islock { get; set; } public int isexecute { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection BASEPlaceVoidLabels { get; set; } } }