package com.consum.base.pojo.excel; import cn.afterturn.easypoi.excel.annotation.Excel; import cn.afterturn.easypoi.excel.annotation.ExcelIgnore; import java.io.Serializable; import lombok.Data; /** * @author asus * @version 1.0 * @description: 采购单导出模板 * @date 2023/12/1 9:35 */ @Data public class ProcureExcelTemplate implements Serializable { @Excel(name = "单位") private String tenantName; @Excel(name = "物品名称") private String templateName; @Excel(name = "物品型号/规格") private String baseModelName; @Excel(name = "数量") private Integer num; @Excel(name = "单价") private Integer price; @Excel(name = "金额") private Integer totalAmount; @Excel(name = "存放地点") private String warehouseName; @Excel(name = "备注") private String remark; @ExcelIgnore private String businessFormCode; @ExcelIgnore private Long createTime; @ExcelIgnore private String operatorName; }