调整
This commit is contained in:
@@ -21,7 +21,13 @@ public enum TradeOrderStatusEnum implements ArrayValuable<Integer> {
|
||||
UNDELIVERED(10, "待发货"),
|
||||
DELIVERED(20, "已发货"),
|
||||
COMPLETED(30, "已完成"),
|
||||
CANCELED(40, "已取消");
|
||||
CANCELED(40, "已取消"),
|
||||
|
||||
WAITPAID(100, "等待付款"),
|
||||
WAITCONFIRM(110, "等待确定"),
|
||||
WAITSERVE(120, "等待服务"),
|
||||
WAITACCEPT(130, "等待验收"),
|
||||
SERVECANCELED(140, "取消服务");
|
||||
|
||||
public static final Integer[] ARRAYS = Arrays.stream(values()).map(TradeOrderStatusEnum::getStatus).toArray(Integer[]::new);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user