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_pack_rule_hist { [Key] public long aiid { get; set; } [Required] [StringLength(20)] public string wks_id { get; set; } [Required] [StringLength(5)] public string check_product { get; set; } [Required] [StringLength(5)] public string check_wo { get; set; } [Required] [StringLength(5)] public string check_power { get; set; } [Required] [StringLength(5)] public string check_current { get; set; } [Required] [StringLength(5)] public string check_color { get; set; } [Required] [StringLength(5)] public string check_grade { get; set; } [Required] [StringLength(5)] public string check_so { get; set; } [Required] [StringLength(10)] public string check_glass_supplier { get; set; } [Required] [StringLength(5)] public string check_glass_thickness { get; set; } [Required] [StringLength(5)] public string check_frame_thickness { get; set; } [Required] [StringLength(5)] public string check_jbox_wirelength { get; set; } public int pack_qty { get; set; } public DateTime? last_update_time { get; set; } [Required] [StringLength(50)] public string last_update_user { get; set; } [Required] [StringLength(50)] public string last_update_machinename { get; set; } } }