using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShwasherSys.Order.Dto { public class OrderPrintMiniExcelDto { public string OrderNo { get; set; } public string StockNo { get; set; } public string CustomerName { get; set; } public string SendAddress { get; set; } public string ContactTels { get; set; } public string ContactMan { get; set; } public string OrderDate { get; set; } public List Item { get; set; } } public class OrderPrintItemsExcelDto { public int Index { get; set; } public string PartNo { get; set; } public string ProductName { get; set; } public string Model { get; set; } public string SurfaceColor { get; set; } public string Material { get; set; } public string Rigidity { get; set; } public decimal Quantity { get; set; } public string OrderUnitName { get; set; } public string OrderSendDate { get; set; } public string OrderItemDesc { get; set; } public string ProductNo { get; set; } public string CustomerRowNo { get; set; } public string EmergencyLevelStr { get; set; } } }