yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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;
    }
}