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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| package cn.iocoder.yudao.module.erp.enums;
|
| import cn.iocoder.yudao.framework.common.core.ArrayValuable;
| import lombok.AllArgsConstructor;
| import lombok.Getter;
|
| import java.util.Arrays;
|
| /**
| * ERP 采购计划状态枚举
| *
| * @author xiaoyi
| */
| @Getter
| @AllArgsConstructor
| public enum ErpPurchasePlanStatusEnum implements ArrayValuable<Integer> {
|
| DRAFT(0, "未提交"),
| PROCESS(10, "审批中"),
| APPROVE(20, "审核通过"),
| REJECT(30, "审核不通过"),
| CANCEL(40, "已取消");
|
| public static final Integer[] ARRAYS = Arrays.stream(values())
| .map(ErpPurchasePlanStatusEnum::getStatus).toArray(Integer[]::new);
|
| public static ErpPurchasePlanStatusEnum fromStatus(Integer status) {
| if (status == null) {
| return null;
| }
| return Arrays.stream(values()).filter(item -> item.getStatus().equals(status)).findFirst().orElse(null);
| }
|
| public static ErpPurchasePlanStatusEnum fromName(String name) {
| if (name == null) {
| return null;
| }
| return Arrays.stream(values()).filter(item -> item.getName().equals(name)).findFirst().orElse(null);
| }
|
| /**
| * 状态
| */
| private final Integer status;
| /**
| * 状态名
| */
| private final String name;
|
| @Override
| public Integer[] array() {
| return ARRAYS;
| }
|
| }
|
|