whycxzp
2023-08-16 618fd4fe93cb0901011c59f05a4a68376b378fe2
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
package com.whyc.constant;
 
public enum EnumWorksheetType {
    ProductBom(1,"告警工单");
 
    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;
    }
}