java110-common/src/main/java/com/java110/common/util/BeanConvertUtil.java
@@ -89,11 +89,11 @@ * @param orgBean 原始bean * @return map对象 */ public static Map<String, Object> beanCovertMap(Object orgBean) { Map<String, Object> newMap = new HashMap<String, Object>(); public static Map beanCovertMap(Object orgBean) { Map newMap = null; try { BeanUtils.populate(orgBean, newMap); newMap = BeanUtils.describe(orgBean); } catch (Exception e) { throw new RuntimeException("bean转换Map失败", e); }