List<Map<String, Ojbect>> 转 List<ProfitsharingCustomerExcel>


JSONArray jsonArray = new JSONArray();
jsonArray.addAll(mapList);
List list = jsonArray.toJavaList(ProfitsharingCustomerExcel.class);

相关