cy
2023-11-22 8fc8b4788ed8be27ff6aae1cdd3fe9a584972ae3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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;
 
}