5 changed files with 398 additions and 0 deletions
@ -0,0 +1,125 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.distribution.excel; |
||||||
|
|
||||||
|
|
||||||
|
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 lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 签收导出包件Excel实体 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-06-13 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class DistributionSignforOrderExcel implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("运单号") |
||||||
|
private String waybillNumber; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("服务号") |
||||||
|
private String serviceNumber; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("订单自编号") |
||||||
|
private String orderCode; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("仓库") |
||||||
|
private String warehouse; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("总数量") |
||||||
|
private Integer totalNumber; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("在库数量") |
||||||
|
private Integer handQuantity; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("计划数量") |
||||||
|
private Integer reservationNum; |
||||||
|
|
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("装车数量") |
||||||
|
private Integer loadingNumber; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("签收数量") |
||||||
|
private Integer signinQuantity; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("品牌") |
||||||
|
private String brand; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("收货单位") |
||||||
|
private String consigneeUnit; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("商场名称") |
||||||
|
private String mallName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("门店名称") |
||||||
|
private String storeName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("运单收货人") |
||||||
|
private String consigneePerson; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("运单收货地址") |
||||||
|
private String consigneeAddress; |
||||||
|
|
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("运单收货电话") |
||||||
|
private String consigneeMobile; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("终端收货人") |
||||||
|
private String customerName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("终端收货地址") |
||||||
|
private String customerAddress; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("终端收货电话") |
||||||
|
private String customerTelephone; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,163 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.distribution.excel; |
||||||
|
|
||||||
|
|
||||||
|
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 lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 签收导出包件Excel实体 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-06-13 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class DistributionSignforPackageExcel implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("运单号") |
||||||
|
private String waybillNumber; |
||||||
|
|
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("服务号") |
||||||
|
private String serviceNumber; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("订单自编号") |
||||||
|
private String orderCode; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("包条码") |
||||||
|
private String orderPackageCode; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("仓库") |
||||||
|
private String warehouse; |
||||||
|
|
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("发站仓") |
||||||
|
private String sendWarehouseName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("目的仓") |
||||||
|
private String acceptWarehouseName; |
||||||
|
|
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("入库时间") |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("入库车次") |
||||||
|
private String trainNumber; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("包件类型") |
||||||
|
private String conditions; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("一级品") |
||||||
|
private String firsts; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("二级品") |
||||||
|
private String second; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("三级品") |
||||||
|
private String thirdProduct; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("当前状态") |
||||||
|
private String orderPackageStatusName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("冻结状态") |
||||||
|
private String orderPackageFreezeStatusName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("备货状态") |
||||||
|
private String orderPackageStockupStatusName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预约状态") |
||||||
|
private String orderPackageReservationStatusName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("装车状态") |
||||||
|
private String orderPackageLoadingStatusName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("计划数量") |
||||||
|
private Integer reservationNum; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("装车数量") |
||||||
|
private Integer loadingNub; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("签收数量") |
||||||
|
private Integer signingNub; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("装车方式") |
||||||
|
private String scanStatus; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("计划装车人") |
||||||
|
private String driverName; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("实际装车人") |
||||||
|
private String scanUser; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("装车时间") |
||||||
|
private String loadingTime; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("签收人") |
||||||
|
private String signingUser; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("签收时间") |
||||||
|
private String signingTime; |
||||||
|
|
||||||
|
// @ColumnWidth(20)
|
||||||
|
// @ExcelProperty("装车时间")
|
||||||
|
// private String warehouse;
|
||||||
|
//
|
||||||
|
// @ColumnWidth(20)
|
||||||
|
// @ExcelProperty("签收人")
|
||||||
|
// private String warehouse;
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue