namespace Web.Core.Model.DTO; public class SellOrderProcessDTO { public int InvoiceNo { get; set; } = 0; public string BillCoding { get; set; }= string.Empty; public string CustomerNCodeName { get; set; }= string.Empty; public string UserAddress { get; set; }= string.Empty; public string PlanDispatchDate { get; set; }= string.Empty; public List produceOrders { get; set; }= new List(); } public class ProduceOrderDTO { 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 ProcessDetails { get; set; } } public class ProcessDetailDTO { public int ProcessID { get; set; } public string ProcessName { get; set; } public int ProcessStatus { get; set; } }