package com.zy.asrs.entity.result; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; /** * @author pang.jiabao * @description 拣货单,销售发货用excel导出模板 * @createDate 2025/2/17 15:47 */ @Data public class PakoutExcelVo { @ExcelProperty(value = "牌号") private String brand; @ExcelProperty(value = "批号") private String batch; @ExcelProperty(value = "包装号") private Integer packageNo; @ExcelProperty(value = "生产日期") private String proDate; @ExcelProperty(value = "重量KG") private Double anfme; @ExcelProperty(value = "熔指,g/10min") private Double fingerMelting; @ExcelProperty(value = "熔点,℃") private Double fusingPoint; @ExcelProperty(value = "黄度") private Double yellowness; @ExcelProperty(value = "不透明度,%") private Double opacity; @ExcelProperty(value = "包装类型") private String packageType; @ExcelProperty(value = "托盘类型") private String zpalletType; @ExcelProperty(value = "质量状态") private String massState; @ExcelProperty(value = "库位") private String locNo; }