resultMap.setName(element.attributeValue("name"));
resultMap.setType(element.attributeValue("type"));
for (Object eleNew : element.elements("result")) {
Element resultMappingElement = (Element) eleNew;
Result result = SqlmappingconfigFactory.eINSTANCE.createResult();
result.setColumn(resultMappingElement.attributeValue("column"));
result.setName(resultMappingElement.attributeValue("name"));
result.setJdbcType(resultMappingElement.attributeValue("jdbcType"));
result.setProperty(resultMappingElement.attributeValue("property"));
//result.setSimpleKey(columnMappingElement.attributeValue("property"));
resultMap.getResult().add(result);
//columnMappingMap.put(dataBaseTable.getTableId()+"_"+columnMapping.getColumn(), columnMapping);
}