namespace Warehouse.Models.mesModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class config_mat_cell { [Key] [StringLength(20)] public string part_nbr { get; set; } public short crys_type_id { get; set; } [Required] [StringLength(45)] public string crys_type_desc { get; set; } [Required] [StringLength(45)] public string crys_type_value { get; set; } public short busbar_type_id { get; set; } [Required] [StringLength(45)] public string busbar_type_desc { get; set; } [Required] [StringLength(45)] public string busbar_type_value { get; set; } public short cell_color_id { get; set; } [Required] [StringLength(45)] public string cell_color_desc { get; set; } [Required] [StringLength(45)] public string cell_color_value { get; set; } [Required] [StringLength(20)] public string cell_uop { get; set; } [Required] [StringLength(20)] public string cell_eff { get; set; } public byte is_bond { get; set; } [Required] [StringLength(20)] public string bonded_code { get; set; } [Required] [StringLength(20)] public string cell_size { get; set; } [StringLength(45)] public string chamfer_type_desc { get; set; } [StringLength(45)] public string cell_finger_desc { get; set; } [StringLength(45)] public string circuit_type_desc { get; set; } [StringLength(45)] public string pid_type_desc { get; set; } [StringLength(45)] public string cell_type_desc { get; set; } } }