}
((ObjectNode)dataTypeNode).put("items", dataTypeArrayNode);
//加载业务类型
JsonNode bizTypeNode = JsonConverterUtil.getChildElementByProperty("biztype", "id", (ArrayNode)complexItemsNode);
DataVariableBizTypeConfig dataVariableBizTypeConfig = dataVariableConfig.getDataVariableBizTypeConfig();
List<DataVariableBizType> bizTypes = dataVariableBizTypeConfig.getDataVariableBizType();
ArrayNode bizTypeArrayNode = objectMapper.createArrayNode();
for(DataVariableBizType dataVariableBizType : bizTypes){
ObjectNode objectNode = objectMapper.createObjectNode();
objectNode.put("id",dataVariableBizType.getTypeId());
objectNode.put("title", dataVariableBizType.getTypeName());