package com.consum.base.pojo.excel; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; /** * 功能描述: 分发单模板 * * @author lxk * @version 1.0 * @date 2024/5/10 10:15 **/ @Data public class LWhFormTransferTemplate { @ExcelProperty("一级分类") private String categoryOne; @ExcelProperty("二级分类") private String categoryTwo; @ExcelProperty("品类名称") private String categoryThree; @ExcelProperty("管理分类") private String type; @ExcelProperty("品名") private String goodsName; @ExcelProperty("规格型号") private String goodModelName; @ExcelProperty("单位") private String unit; // @ExcelProperty("物品类型") // private String goodsType; // @ExcelProperty("所在仓库") // private String warehouseName; @ExcelProperty("所属机构") private String agencyName; @ExcelProperty("供货商") private String supplierName; // @ExcelProperty("单价(元)") // private String price; @ExcelProperty("库管员") private String warehouseKeeper; @ExcelProperty("使用人") private String user; @ExcelProperty("使用人部门") private String userDepartment; @ExcelProperty("使用人联系电话") private String userContactPhone; @ExcelProperty("领用数量") private String num; @ExcelProperty("填报人") private String reportedBy; }