OrderPrintMiniExcelDto.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.Order.Dto
  7. {
  8. public class OrderPrintMiniExcelDto
  9. {
  10. public string OrderNo { get; set; }
  11. public string StockNo { get; set; }
  12. public string CustomerName { get; set; }
  13. public string SendAddress { get; set; }
  14. public string ContactTels { get; set; }
  15. public string ContactMan { get; set; }
  16. public string OrderDate { get; set; }
  17. public List<OrderPrintItemsExcelDto> Item { get; set; }
  18. }
  19. public class OrderPrintItemsExcelDto
  20. {
  21. public int Index { get; set; }
  22. public string PartNo { get; set; }
  23. public string ProductName { get; set; }
  24. public string Model { get; set; }
  25. public string SurfaceColor { get; set; }
  26. public string Material { get; set; }
  27. public string Rigidity { get; set; }
  28. public decimal Quantity { get; set; }
  29. public string OrderUnitName { get; set; }
  30. public string OrderSendDate { get; set; }
  31. public string OrderItemDesc { get; set; }
  32. public string ProductNo { get; set; }
  33. public string CustomerRowNo { get; set; }
  34. public string EmergencyLevelStr { get; set; }
  35. }
  36. }