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 oem_assembly { [Key] [Column(Order = 0)] [StringLength(50)] public string uuid { get; set; } [Key] [Column(Order = 1)] [StringLength(30)] public string serial_nbr { get; set; } [Required] [StringLength(30)] public string pallet_nbr { get; set; } [Required] [StringLength(30)] public string workorder { get; set; } [Required] [StringLength(20)] public string product_code { get; set; } [Required] [StringLength(45)] public string schedule_nbr { get; set; } [Required] [StringLength(5)] public string serial_status { get; set; } [Required] [StringLength(10)] public string exterior_grade { get; set; } [Required] [StringLength(10)] public string el_grade { get; set; } [Required] [StringLength(10)] public string final_grade { get; set; } public short power_grade { get; set; } [Required] [StringLength(10)] public string current_grade { get; set; } public decimal pmax { get; set; } public decimal voc { get; set; } public decimal isc { get; set; } public decimal ff { get; set; } public decimal vpm { get; set; } public decimal ipm { get; set; } public decimal? env_temp { get; set; } public decimal? surf_temp { get; set; } public byte status_flag { get; set; } public float? rs { get; set; } public float? rsh { get; set; } public float? eff { get; set; } } }