mes enum order type

yun-zuoyi
王杰 5 years ago
parent aabd7b5d1d
commit 31d7b71872

@ -3290,6 +3290,16 @@ public class MesEnumUtil {
}
return tmp;
}
public static Integer descriptionOfValue(String description) {
Integer tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].description.equals(description)) {
tmp = values()[i].value;
}
}
return tmp;
}
}
/**

Loading…
Cancel
Save