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
56
57
58
| package com.iailab.module.bpm.framework.flowable.core.enums;
|
| import cn.hutool.core.util.ArrayUtil;
| import com.iailab.framework.common.core.IntArrayValuable;
| import lombok.AllArgsConstructor;
| import lombok.Getter;
|
| import java.util.Arrays;
|
| /**
| * BPM 任务的候选人策略枚举
| *
| * 例如说:分配给指定人审批
| *
| * @author iailab
| */
| @Getter
| @AllArgsConstructor
| public enum BpmTaskCandidateStrategyEnum implements IntArrayValuable {
|
| ROLE(10, "角色"),
| DEPT_MEMBER(20, "部门的成员"), // 包括负责人
| DEPT_LEADER(21, "部门的负责人"),
| MULTI_DEPT_LEADER_MULTI(23, "连续多级部门的负责人"),
| POST(22, "岗位"),
| USER(30, "用户"),
| START_USER_SELECT(35, "发起人自选"), // 申请人自己,可在提交申请时选择此节点的审批人
| START_USER(36, "发起人自己"), // 申请人自己, 一般紧挨开始节点,常用于发起人信息审核场景
| START_USER_DEPT_LEADER(37, "发起人部门负责人"),
| START_USER_DEPT_LEADER_MULTI(38, "发起人连续多级部门的负责人"),
| USER_GROUP(40, "用户组"),
| FORM_USER(50, "表单内用户字段"),
| FORM_DEPT_LEADER(51, "表单内部门负责人"),
| EXPRESSION(60, "流程表达式"), // 表达式 ExpressionManager
| ASSIGN_EMPTY(1, "审批人为空"),
| ;
|
| public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(BpmTaskCandidateStrategyEnum::getStrategy).toArray();
|
| /**
| * 类型
| */
| private final Integer strategy;
| /**
| * 描述
| */
| private final String description;
|
| public static BpmTaskCandidateStrategyEnum valueOf(Integer strategy) {
| return ArrayUtil.firstMatch(o -> o.getStrategy().equals(strategy), values());
| }
|
| @Override
| public int[] array() {
| return ARRAYS;
| }
|
| }
|
|