yangys
2024-04-01 86cdd920b68274185233383f69ddb974052b6b6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.qianwen.smartman.common.enums;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/enums/GlobalWcsTypeEnum.class */
public enum GlobalWcsTypeEnum {
    DEFAULT("系统默认", 1),
    BUSINESS("业务逻辑", 2),
    FEEDBACK("反馈", 4);
    
    private final String name;
    private final Integer type;
 
    GlobalWcsTypeEnum(final String name, final Integer type) {
        this.name = name;
        this.type = type;
    }
 
    public String getName() {
        return this.name;
    }
 
    public Integer getType() {
        return this.type;
    }
}