ProcessInfoParallelRulesEnum.java 392 B

123456789101112131415161718192021
  1. package com.fjhx.enums;
  2. import lombok.Getter;
  3. @Getter
  4. public enum ProcessInfoParallelRulesEnum {
  5. no(0), // 无规则
  6. business(1), // 业务禁止并行
  7. user(2), // 用户禁止并行
  8. role(3), // 角色禁止并行
  9. dept(4), // 部门禁止并行
  10. ;
  11. private final Integer type;
  12. ProcessInfoParallelRulesEnum(Integer type) {
  13. this.type = type;
  14. }
  15. }