38 lines
848 B
C#
38 lines
848 B
C#
namespace Web.Core.Model.Entity;
|
|
|
|
public class MDB_ProduceOrder
|
|
{
|
|
public int InvoiceNo {get;set;}
|
|
|
|
public int InvoiceDetailID {get;set;}
|
|
|
|
public string BillCoding { get; set; }
|
|
|
|
public int ProductionTaskNo {get;set;}
|
|
|
|
public string ProductionTaskName {get;set;}
|
|
|
|
public string ItemNCodeName {get;set;}
|
|
|
|
public int ItemType {get;set;}
|
|
|
|
public int ItemAttrib1 {get;set;}
|
|
|
|
public int ItemAttrib2 {get;set;}
|
|
|
|
public string ItemAttrib4 {get;set;}
|
|
|
|
public string CustomDescription { get; set; }
|
|
|
|
public DateTime PlanEndDate {get;set;}
|
|
|
|
public List<MDB_ProcessDetail> ProcessDetails{get;set;}
|
|
|
|
}
|
|
|
|
public class MDB_ProcessDetail
|
|
{
|
|
public int ProcessID {get;set;}
|
|
public string ProcessName {get;set;}
|
|
public int ProcessStatus {get;set;}
|
|
} |