dataease-dm/sdk/common/src/main/java/io/dataease/constant/AuthEnum.java
2023-10-23 22:00:14 +08:00

22 lines
364 B
Java

package io.dataease.constant;
public enum AuthEnum {
READ(1), EXPORT(4), MANAGE(7), AUTH(9);
private Integer weight;
public Integer getWeight() {
return weight;
}
public void setWeight(Integer weight) {
this.weight = weight;
}
AuthEnum(Integer weight) {
this.weight = weight;
}
AuthEnum() {
}
}