新增CalType枚举类
This commit is contained in:
parent
fd04d6bc2d
commit
5852d2f686
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user