StorageDetail.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package com.ruoyi.warehouseBusiness.excel;
  2. import com.ruoyi.common.annotation.Excel;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 仓储明细导出
  7. *
  8. * @author shz
  9. * @date 2021-12-20
  10. */
  11. public class StorageDetail {
  12. private static final long serialVersionUID = 1L;
  13. /**
  14. * 提单号
  15. */
  16. @Excel(name = "提单号")
  17. private String fMblno;
  18. /**
  19. * 货物名称
  20. */
  21. @Excel(name = "货物名称")
  22. private String fProductName;
  23. /**
  24. * 包装
  25. */
  26. @Excel(name = "包装")
  27. private String fPackagespecs;
  28. /**
  29. * 计划原因
  30. */
  31. @Excel(name = "计划原因")
  32. private String fBusinessType;
  33. /**
  34. * 入库日期
  35. */
  36. @Excel(name = "入库日期", dateFormat = "yyyy-MM-dd")
  37. private Date inStockDate;
  38. /**
  39. * 入库件数
  40. */
  41. @Excel(name = "件数", isStatistics = true)
  42. private Long fQtyD;
  43. /**
  44. * 入库重量
  45. */
  46. @Excel(name = "重量", isStatistics = true)
  47. private BigDecimal fGrossweightD;
  48. /**
  49. * 出库日期
  50. */
  51. @Excel(name = "出库日期", dateFormat = "yyyy-MM-dd")
  52. private Date outStockDate;
  53. /**
  54. * 车号
  55. */
  56. @Excel(name = "车号")
  57. private String fTruckno;
  58. /**
  59. * 出库件数
  60. */
  61. @Excel(name = "件数", isStatistics = true)
  62. private Long fQtyC;
  63. /**
  64. * 出库重量
  65. */
  66. @Excel(name = "重量", isStatistics = true)
  67. private BigDecimal fGrossweightC;
  68. /**
  69. * 计费单位
  70. */
  71. @Excel(name = "计费单位")
  72. private String fBillingway;
  73. /**
  74. * 计费数量
  75. */
  76. @Excel(name = "计费数量", isStatistics = true)
  77. private BigDecimal fBillingQty;
  78. /**
  79. * 堆存天数
  80. */
  81. @Excel(name = "堆存天数")
  82. private Long fBillingDays;
  83. /**
  84. * 出库堆存费
  85. */
  86. @Excel(name = "出库堆存费", isStatistics = true)
  87. private BigDecimal fAmount;
  88. }