新增XeNuclideName枚举类
This commit is contained in:
parent
5852d2f686
commit
30d8b5d13d
|
@ -2,17 +2,11 @@ package org.jeecg.modules.base.enums;
|
||||||
|
|
||||||
public enum CalType {
|
public enum CalType {
|
||||||
|
|
||||||
/**
|
|
||||||
* 颗粒物
|
|
||||||
*/
|
|
||||||
ENERGY_CAL("energy"),
|
ENERGY_CAL("energy"),
|
||||||
/**
|
|
||||||
* β-γ
|
|
||||||
*/
|
|
||||||
EFFICIENCY_CAL("efficiency"),
|
EFFICIENCY_CAL("efficiency"),
|
||||||
/**
|
|
||||||
* γ
|
|
||||||
*/
|
|
||||||
RESOLUTION_CAL("Resolution");
|
RESOLUTION_CAL("Resolution");
|
||||||
|
|
||||||
private String type;
|
private String type;
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
package org.jeecg.modules.base.enums;
|
||||||
|
|
||||||
|
public enum XeNuclideName {
|
||||||
|
|
||||||
|
|
||||||
|
XE_135("Xe135"),
|
||||||
|
|
||||||
|
XE_131m("Xe131m"),
|
||||||
|
|
||||||
|
XE_133m("Xe133m"),
|
||||||
|
|
||||||
|
XE_133("Xe133");
|
||||||
|
|
||||||
|
private String type;
|
||||||
|
|
||||||
|
XeNuclideName(String type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getType(){
|
||||||
|
return this.type;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user