|
|
|
@ -197,6 +197,7 @@ public class MesEnumUtil {
|
|
|
|
|
public String getDescription() {
|
|
|
|
|
return description;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 根据value返回枚举类型,主要在switch中使用
|
|
|
|
|
public static ORGANIZATION_INIT_DATA getByValue(String value) {
|
|
|
|
|
for (ORGANIZATION_INIT_DATA mesInsertExcel : values()) {
|
|
|
|
@ -3078,6 +3079,7 @@ public class MesEnumUtil {
|
|
|
|
|
public enum ONLINE_SEND_TYPE {
|
|
|
|
|
|
|
|
|
|
PLC("PLC", "PLC"),
|
|
|
|
|
SELF_HANDLE("SELF_HANDLE", "自处理"),
|
|
|
|
|
DB("DB", "DB");
|
|
|
|
|
|
|
|
|
|
private String value;
|
|
|
|
|