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 Double price; @ExcelProperty(value = "净重") private Double weight; @ExcelProperty(value = "毛重") private Double volume; @ExcelProperty(value = "接头") private String specs; @ExcelProperty(value = "备注") private String memo=""; public OrderGiftProofreadingVo() { } public OrderGiftProofreadingVo(String orderNo, String matnr, String batch, String model, Double price, Double weight, Double 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; } }