package com.chinaztt.mes.plan.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class OperationTaskProduceData {
|
|
@ExcelProperty(value = "otc订单号")
|
private String otcCustomerOrderNo;
|
|
@ExcelProperty(value = "otc订单行号")
|
private String otcLineNo;
|
|
// @ExcelProperty(value = "合同产品规格型号")
|
// private String customerPartSpec;
|
|
@ExcelProperty(value = "段长")
|
private BigDecimal qty;
|
|
@ExcelProperty(value = "米标")
|
private String meterMark;
|
|
@ExcelProperty(value = "CRCC号")
|
private String crccNumber;
|
|
@ExcelProperty(value = "公司名称")
|
private String company;
|
|
@ExcelProperty(value = "成品规格型号")
|
private String finishedProductSpecification;
|
|
@ExcelProperty(value = "年月日")
|
private String ymd;
|
|
@ExcelProperty(value = "始端")
|
private String begining;
|
|
@ExcelProperty(value = "终端")
|
private String ending;
|
|
@ExcelProperty(value = "用途")
|
private String purpose;
|
|
@ExcelProperty(value = "自编号")
|
private String selfNo;
|
|
@ExcelProperty(value = "去向")
|
private String direction;
|
|
@ExcelProperty(value = "区间")
|
private String section;
|
|
@ExcelProperty(value = "印字")
|
private String print;
|
|
@ExcelProperty(value = "端别")
|
private String endClassification;
|
|
@ExcelProperty(value = "备注")
|
private String orderUploadRemark;
|
}
|