Merge pull request 'test' (#313) from junsheng.li/i3plus-pojo-junsheng:test into test

Reviewed-on: http://git.estsh.com/i3-IMPP/i3plus-pojo/pulls/313
yun-zuoyi
聂帅 4 years ago
commit 3552c56d74

@ -5756,6 +5756,16 @@ public class WmsEnumUtil {
}
return tmp;
}
public static String valueOfDescription(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description;
}
}
return tmp;
}
}
/**

Loading…
Cancel
Save