Fix number data type issue of reference value #129

This commit is contained in:
Francis Dong
2021-04-20 10:39:34 +08:00
committed by dxfeng10
parent 9c78faf876
commit 69625440dd

View File

@@ -40,7 +40,7 @@ import we.util.MapUtil;
public class PathMapping {
private static List<String> typeList = Arrays.asList("Integer", "int", "Boolean", "boolean", "Float", "float",
"Double", "double", "String", "string", "Long", "long");
"Double", "double", "String", "string", "Long", "long", "Number", "number");
public static ONode toONode(Object obj) {
ONode o = null;