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.
74 lines
1.8 KiB
74 lines
1.8 KiB
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.if_e2m_workorder_info")]
|
|
public partial class if_e2m_workorder_info
|
|
{
|
|
[StringLength(10)]
|
|
public string OrgID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string WorkShop { get; set; }
|
|
|
|
[Key]
|
|
[StringLength(45)]
|
|
public string WorkOrder { get; set; }
|
|
|
|
public int Qty { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string BOMID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string WorkOrder_Type { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ProductType { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string Module_Type { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string PID_Type { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ModuleColor { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(75)]
|
|
public string Cristal_Type { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string Cell_Size { get; set; }
|
|
|
|
public int Cell_Qty { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string Cell_Type { get; set; }
|
|
|
|
public DateTime? PlanDateTime { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string SaleOrder { get; set; }
|
|
|
|
[StringLength(245)]
|
|
public string Description { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string UserID { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string State { get; set; }
|
|
}
|
|
}
|
|
|