1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.qianwen.smartman.common.enums;
|
| 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;
| }
| }
|
|