| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package com.ruoyi.warehouseBusiness.excel;
- import com.ruoyi.common.annotation.Excel;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * 仓储明细导出
- *
- * @author shz
- * @date 2021-12-20
- */
- public class StorageDetail {
- private static final long serialVersionUID = 1L;
- /**
- * 提单号
- */
- @Excel(name = "提单号")
- private String fMblno;
- /**
- * 货物名称
- */
- @Excel(name = "货物名称")
- private String fProductName;
- /**
- * 包装
- */
- @Excel(name = "包装")
- private String fPackagespecs;
- /**
- * 计划原因
- */
- @Excel(name = "计划原因")
- private String fBusinessType;
- /**
- * 入库日期
- */
- @Excel(name = "入库日期", dateFormat = "yyyy-MM-dd")
- private Date inStockDate;
- /**
- * 入库件数
- */
- @Excel(name = "件数", isStatistics = true)
- private Long fQtyD;
- /**
- * 入库重量
- */
- @Excel(name = "重量", isStatistics = true)
- private BigDecimal fGrossweightD;
- /**
- * 出库日期
- */
- @Excel(name = "出库日期", dateFormat = "yyyy-MM-dd")
- private Date outStockDate;
- /**
- * 车号
- */
- @Excel(name = "车号")
- private String fTruckno;
- /**
- * 出库件数
- */
- @Excel(name = "件数", isStatistics = true)
- private Long fQtyC;
- /**
- * 出库重量
- */
- @Excel(name = "重量", isStatistics = true)
- private BigDecimal fGrossweightC;
- /**
- * 计费单位
- */
- @Excel(name = "计费单位")
- private String fBillingway;
- /**
- * 计费数量
- */
- @Excel(name = "计费数量", isStatistics = true)
- private BigDecimal fBillingQty;
- /**
- * 堆存天数
- */
- @Excel(name = "堆存天数")
- private Long fBillingDays;
- /**
- * 出库堆存费
- */
- @Excel(name = "出库堆存费", isStatistics = true)
- private BigDecimal fAmount;
- }
|