新增CalName,MiddleDataType,RoleType枚举类

CalType枚举类新增字段TOTALEFFICIENCY_CAL
This commit is contained in:
qiaoqinzheng 2023-09-01 14:34:52 +08:00
parent f70cc10b55
commit c6d4eb2381
4 changed files with 70 additions and 0 deletions

View File

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

View File

@ -7,6 +7,8 @@ public enum CalType {
EFFICIENCY_CAL("efficiency"),
TOTALEFFICIENCY_CAL("TotalEfficiency"),
RESOLUTION_CAL("Resolution");
private String type;

View File

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

View File

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