package com.consum.base.pojo; import cn.afterturn.easypoi.excel.annotation.Excel; import cn.afterturn.easypoi.handler.inter.IExcelDataModel; import cn.afterturn.easypoi.handler.inter.IExcelModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @ClassName WarnConfImEntity * @Author cy * @Date 2023/11/22 * @Description * @Version 1.0 **/ @Data public class WarnConfImEntity implements IExcelDataModel, IExcelModel { @ApiModelProperty("仓库名称") @Excel(name = "仓库名称") private String warehouseName; @Excel(name = "物品名称") @ApiModelProperty(value = "物品名称") private String goodsTemplateName; @Excel(name = "型号名称") @ApiModelProperty("型号名称") private String goodsModelName; @Excel(name = "保底库存") @ApiModelProperty("保底库存") private Integer lowerLimit; @Excel(name = "封顶库存") @ApiModelProperty("封顶库存") private Integer upperLimit; @ApiModelProperty("物品id") private Long goodsTemplateId; @ApiModelProperty("仓库id") private Long baseWarehouseId; @ApiModelProperty("物品型号id") private Long baseGoodsModelsId; /** * 行号 */ private int rowNum; /** * 错误消息 */ private String errorMsg; }