namespace Warehouse.Models.mesLevel4 { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class customer { [Key] [StringLength(20)] public string cust_id { get; set; } [Required] [StringLength(45)] public string cust_desc { get; set; } public byte active_flag { get; set; } public short? el_grade_id { get; set; } [StringLength(10)] public string el_grade_value { get; set; } public short? ex_grade_id { get; set; } [StringLength(10)] public string ex_grade_value { get; set; } public short? freezing_time { get; set; } public byte jbox_control_flag { get; set; } public byte ny_control_flag { get; set; } } }