Merge remote-tracking branch 'origin/test' into test

yun-zuoyi
钮海涛 4 years ago
commit eea1084f84

@ -2813,6 +2813,15 @@ public class MesEnumUtil {
}
return tmp;
}
public static MES_QC_CHECK_TYPE getByValue(int value) {
for (MES_QC_CHECK_TYPE type : values()) {
if (type.getValue() == value) {
return type;
}
}
return null;
}
}
/**
@ -7705,6 +7714,15 @@ public class MesEnumUtil {
}
return tmp;
}
public static QC_CHECK_DATA_SOURCE getByValue(int value) {
for (QC_CHECK_DATA_SOURCE type : values()) {
if (type.getValue() == value) {
return type;
}
}
return null;
}
}
/**

Loading…
Cancel
Save