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;
- }
- }
|