yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.qianwen.smartman.common.enums;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/enums/PropertyEnum.class */
public enum PropertyEnum {
    RAW_MATERIALS(1),
    SEMI_FINISHED_PRODUCT(2),
    FINISHED_PRODUCT(3),
    SPAR_PART(4),
    AUXILIARY_SUPPLIES(5),
    OTHER(9);
    
    final int key;
 
    PropertyEnum(final int key) {
        this.key = key;
    }
 
    public int getKey() {
        return this.key;
    }
}