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
33
34
35
| package cc.mrbird.febs.common.enumerates;
|
| import lombok.Getter;
|
| @Getter
| public enum ClothesOrderStatusEnum {
|
| /**
| * 状态;1-待支付 2-待发货 3-待收货 4-已完成 5-已取消
| */
| WAIT_PAY(1),
| /**
| * 待发货
| */
| WAIT_SHIPPING(2),
| /**
| * 待收货
| */
| WAIT_FINISH(3),
| /**
| * 已完成
| */
| FINISH(4),
| /**
| * 已取消
| */
| CANCEL(5)
| ;
|
| private final int value;
|
| ClothesOrderStatusEnum(int value) {
| this.value = value;
| }
| }
|
|