新增CalName,MiddleDataType,RoleType枚举类
CalType枚举类新增字段TOTALEFFICIENCY_CAL
This commit is contained in:
parent
f70cc10b55
commit
c6d4eb2381
|
@ -0,0 +1,25 @@
|
|||
package org.jeecg.modules.base.enums;
|
||||
|
||||
public enum CalName {
|
||||
|
||||
CalPHD("PHD"),
|
||||
|
||||
CalUpdate1("CalUpdate1"),
|
||||
|
||||
CalUpdate2("CalUpdate2"),
|
||||
|
||||
CalResUpdate("CalResUpdate"),
|
||||
|
||||
CalInput("Input");
|
||||
|
||||
private String type;
|
||||
|
||||
CalName(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getType(){
|
||||
return this.type;
|
||||
}
|
||||
|
||||
}
|
|
@ -7,6 +7,8 @@ public enum CalType {
|
|||
|
||||
EFFICIENCY_CAL("efficiency"),
|
||||
|
||||
TOTALEFFICIENCY_CAL("TotalEfficiency"),
|
||||
|
||||
RESOLUTION_CAL("Resolution");
|
||||
|
||||
private String type;
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
package org.jeecg.modules.base.enums;
|
||||
|
||||
public enum MiddleDataType {
|
||||
|
||||
Auto("Auto"),
|
||||
|
||||
InterAction("InterAction");
|
||||
|
||||
private String type;
|
||||
|
||||
MiddleDataType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getType(){
|
||||
return this.type;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
package org.jeecg.modules.base.enums;
|
||||
|
||||
public enum RoleType {
|
||||
|
||||
|
||||
Role_Manager("admin"),
|
||||
|
||||
Role_SuperAnalyst("SeniorAnalyst"),
|
||||
|
||||
Role_Analyst("Analyst");
|
||||
|
||||
private String type;
|
||||
|
||||
RoleType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getType(){
|
||||
return this.type;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user