|
@@ -884,9 +884,9 @@ public class ExcelUtil<T>
|
|
|
if (StringUtils.isNotEmpty(name))
|
|
|
{
|
|
|
Class<?> clazz = o.getClass();
|
|
|
- String methodName = "get" + name.substring(0, 1).toUpperCase() + name.substring(1);
|
|
|
- Method method = clazz.getMethod(methodName);
|
|
|
- o = method.invoke(o);
|
|
|
+ Field field = clazz.getDeclaredField(name);
|
|
|
+ field.setAccessible(true);
|
|
|
+ o = field.get(o);
|
|
|
}
|
|
|
return o;
|
|
|
}
|