新增XeNuclideName枚举类

This commit is contained in:
qiaoqinzheng 2023-08-31 15:29:50 +08:00
parent 5852d2f686
commit 30d8b5d13d
2 changed files with 27 additions and 9 deletions

View File

@ -2,17 +2,11 @@ package org.jeecg.modules.base.enums;
public enum CalType {
/**
* 颗粒物
*/
ENERGY_CAL("energy"),
/**
* β-γ
*/
EFFICIENCY_CAL("efficiency"),
/**
* γ
*/
RESOLUTION_CAL("Resolution");
private String type;

View File

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