Commit bb6987a4 by Suvalue

参数类型调整

parent 1eb00caa
...@@ -114,7 +114,11 @@ public class BlockValuesServiceImpl implements BlockValuesService { ...@@ -114,7 +114,11 @@ public class BlockValuesServiceImpl implements BlockValuesService {
Object value = dim.get(obj); Object value = dim.get(obj);
if (value instanceof Object) { if (value instanceof Object) {
Object valueNew = dim.get(obj); Object valueNew = dim.get(obj);
dim.put(String.valueOf(obj), valueNew); if (String.valueOf(obj).equals("TIME")) {
dim.put(String.valueOf(obj), Integer.valueOf(valueNew.toString()));
} else {
dim.put(String.valueOf(obj), valueNew);
}
} }
remove(value, iterator); remove(value, iterator);
} }
......
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