ExternalAPI_NET8/Model/DTO/SellOrderProcessDTO.cs
2026-05-21 17:23:36 +08:00

47 lines
1.1 KiB
C#

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<ProduceOrderDTO> produceOrders { get; set; }= new List<ProduceOrderDTO>();
}
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<ProcessDetailDTO> ProcessDetails { get; set; }
}
public class ProcessDetailDTO
{
public int ProcessID { get; set; }
public string ProcessName { get; set; }
public int ProcessStatus { get; set; }
}