*/
private static void addEntityToMap(String targetId, Field field,
ExcelImportEntity excelEntity, Class<?> pojoClass,
List<Method> getMethods, Map<String, ExcelImportEntity> temp) throws Exception {
Excel excel = field.getAnnotation(Excel.class);
excelEntity = new ExcelImportEntity();
excelEntity.setType(excel.exportType());
excelEntity.setSaveUrl(excel.savePath());
excelEntity.setSaveType(excel.imageType());
getExcelField(targetId, field, excelEntity, excel, pojoClass);
if (getMethods != null) {