namespace Warehouse.Models.mesMysqlModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("js_mes.rt_mid_flash_label_imp")] public partial class rt_mid_flash_label_imp { public int id { get; set; } [StringLength(40)] public string ProductType { get; set; } [Required] [StringLength(40)] public string Pmax { get; set; } [Required] [StringLength(20)] public string IType { get; set; } [Required] [StringLength(20)] public string IGrade { get; set; } public double UPPER { get; set; } public double LOWER { get; set; } [Required] [StringLength(45)] public string createuser { get; set; } public DateTime? createtime { get; set; } } }