lxw
2022-09-01 4b25f361aeabaea53e1e17eb374e294bdb285bd4
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
package com.whyc.config;
 
public enum EnumWorksheetType {
    ProductBom(1,"产品Bom"),
    Material(2,"散装件"),
    MaterialProduct(3,"散装件-产品"),
    ProductSoftware(4,"产品软件");
 
    EnumWorksheetType(Integer type, String typeName) {
        this.type = type;
        this.typeName = typeName;
    }
 
    private Integer type;
    private String typeName;
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
}