You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.7 KiB
71 lines
1.7 KiB
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
|
|
{
|
|
[Key]
|
|
[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; }
|
|
}
|
|
}
|
|
|