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 master_supplier { [Key] [StringLength(20)] public string supplier_code { get; set; } [Required] [StringLength(45)] public string descriptions { get; set; } public byte active_flag { get; set; } public byte v_flag_cell { get; set; } public byte v_flag_bks { get; set; } public byte v_flag_eva { get; set; } public byte v_flag_glass { get; set; } public byte v_flag_hulian { get; set; } public byte v_flag_huiliu { get; set; } public byte v_flag_jbox { get; set; } public byte v_flag_glue { get; set; } public byte v_flag_frame { get; set; } public byte v_flag_solder { get; set; } } }