|
@@ -157,9 +157,11 @@ public class ExcelInputFactory {
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- Method method = methodCache.get(fieldName);
|
|
|
|
//调用method
|
|
//调用method
|
|
- method.invoke(t,String.valueOf(value));
|
|
|
|
|
|
+ if(value!=null){
|
|
|
|
+ Method method = methodCache.get(fieldName);
|
|
|
|
+ method.invoke(t,String.valueOf(value));
|
|
|
|
+ }
|
|
}
|
|
}
|
|
excelPojoList.add(t);
|
|
excelPojoList.add(t);
|
|
}catch(Exception e){
|
|
}catch(Exception e){
|