dongyukun
8 天以前 e88fba9645a57535d858ce48da8e9d9a3dc84adc
提交 | 用户 | 时间
bb2880 1 package com.iailab.module.bpm.enums.definition;
H 2
3 import com.iailab.framework.common.core.IntArrayValuable;
4 import lombok.AllArgsConstructor;
5 import lombok.Getter;
6
7 import java.util.Arrays;
8
9 /**
10  * BPM 模型的类型的枚举
11  *
12  * @author hou
13  */
14 @Getter
15 @AllArgsConstructor
16 public enum BpmModelTypeEnum implements IntArrayValuable {
17
18     BPMN(10, "BPMN 设计器"), // https://bpmn.io/toolkit/bpmn-js/
19     SIMPLE(20, "SIMPLE 设计器"); // 参考钉钉、飞书工作流的设计器
20
21     public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(BpmModelTypeEnum::getType).toArray();
22
23     private final Integer type;
24     private final String name;
25
26     @Override
27     public int[] array() {
28         return ARRAYS;
29     }
30
31 }