Commit 28aeff46 by huangZW

111

parent 348ba9f0
......@@ -39,7 +39,7 @@ public enum StoreFieldEnum {
public static String getValueName(String changeField) {
for (StoreFieldEnum c : StoreFieldEnum.values()) {
if (c.getValue() == changeField) {
if (c.getValue().equals(changeField)) {
return c.name;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment