package com.chinaztt.mes.warehouse.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @Author: jipf
|
* @Date: 2020-11-30 9:30
|
*/
|
@Data
|
public class EscortDetailData {
|
|
@ExcelProperty("押运单号")
|
private String escortNo;
|
|
@ExcelProperty(value = "押运单状态")
|
private String status;
|
|
@ExcelProperty(value = "客户订单号")
|
private String customerOrderNo;
|
|
@ExcelProperty(value = "客户名称")
|
private String customerName;
|
|
@ExcelProperty(value = "零件批号")
|
private String partBatchNo;
|
|
@ExcelProperty(value = "零件编号")
|
private String partNo;
|
@ExcelProperty(value = "零件名称")
|
private String partName;
|
@ExcelProperty(value = "本次发货数量")
|
private BigDecimal deliveryQty;
|
@ExcelProperty(value = "预留数量")
|
private BigDecimal reservedQuantity;
|
@ExcelProperty(value = "已发货数量")
|
private BigDecimal deliveredQuantity;
|
@ExcelProperty(value = "退货数量")
|
private BigDecimal sendBackQuantity;
|
|
|
|
// @ExcelProperty(value = "物流公司")
|
// private String partBatchNo;
|
// @ExcelProperty(value = "发货时间")
|
// private Long customerOrderId;
|
// @ExcelProperty(value = "合同号")
|
// private Long stockId;
|
// @ExcelProperty(value = "客户")
|
// private Long locationId;
|
// @ExcelProperty(value = "工程名称")
|
// private String escortNo;
|
// @ExcelProperty(value = "发货长度")
|
// private String status;
|
// @ExcelProperty(value = "发货净重")
|
// private String systemNo;
|
// @ExcelProperty(value = "发货毛重")
|
// private String partUnit;
|
// @ExcelProperty(value = "公司名称")
|
// private String partUnit;
|
// @ExcelProperty(value = "联系人")
|
// private String partUnit;
|
//
|
// @ExcelProperty(value = "电话")
|
// private String partUnit;
|
// @ExcelProperty(value = "交货地址")
|
// private String partUnit;
|
// @ExcelProperty(value = "发货备注")
|
// private String partUnit;
|
//
|
|
|
|
|
|
|
|
|
}
|