namespace Warehouse.Models.mesLevel4 { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("shelve")] public partial class shelve { [Key] [StringLength(20)] public string shelve_code { get; set; } [Required] [StringLength(45)] public string descriptions { get; set; } public byte capacity { get; set; } public short? power_grade { get; set; } [StringLength(10)] public string final_grade { get; set; } [StringLength(10)] public string current_grade { get; set; } public byte pallet_qty { get; set; } } }