Open sxq-web opened 1 year ago
public static Table buildColumn(Table table, JSONObject jsonObject){
jsonObject.forEach((key, value) -> { Map<String, String> values = JSONObject.parseObject(value.toString(), new TypeReference<Map<String, String>>() {}); table.addColumns(StringColumn.create(key, values.values())); } ); return table; }
public static Table buildColumn(Table table, JSONObject jsonObject){