1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package org.jeecg.modules.tms.enums;
|
| import lombok.Getter;
|
| /**
| * 出库状态枚举
| */
| @Getter
| public enum OutBoundStatusEnum {
| /**
| * 未出库
| */
| NOT_OUTBOUND("1", "未出库"),
|
| /**
| * 部分出库
| */
| PARTIAL_OUTBOUND("2", "部分出库"),
|
| /**
| * 出库完成
| */
| COMPLETED("3", "出库完成");
|
| private final String value;
| private final String description;
|
| OutBoundStatusEnum(String value, String description) {
| this.value = value;
| this.description = description;
| }
| }
|
|