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