|
|
|
@ -21,6 +21,7 @@ import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|
|
|
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
|
|
|
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
|
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
@ -36,25 +37,99 @@ import java.io.Serializable;
|
|
|
|
|
@ColumnWidth(25) |
|
|
|
|
@HeadRowHeight(20) |
|
|
|
|
@ContentRowHeight(18) |
|
|
|
|
public class DistributionParcelListExcel implements Serializable { |
|
|
|
|
public class DistributionParcelListExcel implements Serializable { |
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("仓库") |
|
|
|
|
private String warehouse; |
|
|
|
|
@ExcelProperty("运单号") |
|
|
|
|
private String waybillNumber; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("订单自编号") |
|
|
|
|
private String orderCode; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("包条码") |
|
|
|
|
private String orderPackageCode; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("货位信息") |
|
|
|
|
private String goodsAllocation; |
|
|
|
|
@ExcelProperty("仓库") |
|
|
|
|
private String warehouse; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("所在托盘") |
|
|
|
|
private String pallet; |
|
|
|
|
@ExcelProperty("服务类型") |
|
|
|
|
private String typeService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("入库时间") |
|
|
|
|
private String warehouseEntryTimeEnd; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("包件类型") |
|
|
|
|
private String conditions; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("备货状态") |
|
|
|
|
private String orderPackageStockupStatus; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("包件状态") |
|
|
|
|
private String orderPackageStatus; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("装车状态") |
|
|
|
|
private String orderPackageLoadingStatus; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("预约状态") |
|
|
|
|
private String orderPackageReservationStatus; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("上架状态") |
|
|
|
|
private String orderPackageGroundingStatus; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("任务号") |
|
|
|
|
private String reservationCode; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("配送司机") |
|
|
|
|
private String driverName; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("装车时间") |
|
|
|
|
private String loadingTime; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("实际装车人") |
|
|
|
|
private String scanUser; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("签收时间") |
|
|
|
|
private String signingTime; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("实际签收人") |
|
|
|
|
private String signingUser; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("车次号") |
|
|
|
|
private String trainNumber; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("配送车辆") |
|
|
|
|
private String vehicleName; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("一级品") |
|
|
|
@ -69,18 +144,70 @@ public class DistributionParcelListExcel implements Serializable {
|
|
|
|
|
private String thirdProduct; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("上架状态") |
|
|
|
|
private String orderPackageGroundingStatus; |
|
|
|
|
@ExcelProperty("物料编码") |
|
|
|
|
private String materialCode; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("物料名称") |
|
|
|
|
private String materialName; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("货位信息") |
|
|
|
|
private String goodsAllocation; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("所在托盘") |
|
|
|
|
private String pallet; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("数量") |
|
|
|
|
private String quantity; |
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("车次号") |
|
|
|
|
private String trainNumber; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @ColumnWidth(20)
|
|
|
|
|
// @ExcelProperty("冻结状态")
|
|
|
|
|
// private String orderPackageFreezeStatus;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// @ColumnWidth(20)
|
|
|
|
|
// @ExcelProperty("服务号")
|
|
|
|
|
// private String serviceNumber;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ColumnWidth(20) |
|
|
|
|
@ExcelProperty("订单自编号") |
|
|
|
|
private String orderCode; |
|
|
|
|
@ExcelProperty("品牌名称") |
|
|
|
|
private String brandName; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|