123456789101112131415161718192021 |
- package com.fjhx.enums;
- import lombok.Getter;
- @Getter
- public enum ProcessInfoParallelRulesEnum {
- no(0), // 无规则
- business(1), // 业务禁止并行
- user(2), // 用户禁止并行
- role(3), // 角色禁止并行
- dept(4), // 部门禁止并行
- ;
- private final Integer type;
- ProcessInfoParallelRulesEnum(Integer type) {
- this.type = type;
- }
- }
|