OrderSendExcelDto.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.Common.Dto
  7. {
  8. public class OrderSendItemExcelDto
  9. {
  10. public int Index { get; set; }
  11. public string StockNo { get; set; }
  12. public string PartNo { get; set; }
  13. public string ProductName { get; set; }
  14. public string Model { get; set; }
  15. public string SurfaceColor { get; set; }
  16. public string Material { get; set; }
  17. public string Rigidity { get; set; }
  18. public string Unit { get; set; }
  19. //发送数量
  20. public decimal SendQuantity { get; set; }
  21. //包数
  22. public decimal PackageCount { get; set; }
  23. //每包数量
  24. public decimal QuantityPerPack { get; set; }
  25. //剩余数量
  26. public decimal Sysl { get; set; }
  27. public decimal Price { get; set; }
  28. public decimal TotalPrice { get; set; }
  29. public string ProductBatchNum { get; set; }
  30. }
  31. public class OrderSendMiniExcelDto
  32. {
  33. //日期 yyyy-MM-dd
  34. public string Ex1 { get; set; }
  35. //日期 yyyy年MM月dd日
  36. public string Ex2 { get; set; }
  37. public string Ex3 { get; set; }
  38. public decimal AllPackageCount { get; set; }
  39. public decimal AllSendQuantity { get; set; }
  40. public decimal AllTotalPrice { get; set; }
  41. public string OrderSendBillNo { get; set; }
  42. public string CustomerName { get; set; }
  43. public string SendAddress { get; set; }
  44. public string ContactTels { get; set; }
  45. public string ContactMan { get; set; }
  46. //excel中特殊地方显示不同格式
  47. public string SendDate { get; set; }
  48. public List<OrderSendItemExcelDto> send { get; set; }
  49. }
  50. }