新增CalType枚举类

This commit is contained in:
qiaoqinzheng 2023-08-31 14:34:46 +08:00
parent fd04d6bc2d
commit 5852d2f686

View File

@ -0,0 +1,28 @@
package org.jeecg.modules.base.enums;
public enum CalType {
/**
* 颗粒物
*/
ENERGY_CAL("energy"),
/**
* β-γ
*/
EFFICIENCY_CAL("efficiency"),
/**
* γ
*/
RESOLUTION_CAL("Resolution");
private String type;
CalType(String type) {
this.type = type;
}
public String getType(){
return this.type;
}
}