package com.zy.asrs.entity.result;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by vincent on 2021/4/13
|
*/
|
@Data
|
public class OrderGiftProofreadingVo {
|
|
@ExcelProperty(value = "订单号")
|
private String orderNo;
|
@ExcelProperty(value = "规格")
|
private String matnr;
|
@ExcelProperty(value = "箱号")
|
private String batch;
|
@ExcelProperty(value = "卷号")
|
private String model="";
|
@ExcelProperty(value = "长度")
|
private String price="";
|
@ExcelProperty(value = "净重")
|
private String weight="";
|
@ExcelProperty(value = "毛重")
|
private String volume="";
|
@ExcelProperty(value = "备注")
|
private String memo="";
|
|
public OrderGiftProofreadingVo() {
|
}
|
|
public OrderGiftProofreadingVo(String orderNo, String matnr, String batch, String model, String price, String weight, String volume, String memo) {
|
this.orderNo = orderNo;
|
this.matnr = matnr;
|
this.batch = batch;
|
this.model = model;
|
this.price = price;
|
this.weight = weight;
|
this.volume = volume;
|
this.memo = memo;
|
}
|
}
|