|
Map<String, Map<String, Object>> extMap = new HashMap<String, Map<String, Object>>();
for (SysVehicleExpiresEntity1 e : SysVehicleExpiresEntity1List) {
Map map = new HashMap();
Map map1 = new HashMap();
map.put("vechile_no", "车牌号");
map.put("vechile_type", "车型号");
map.put("driver", "车主姓名");
map.put("telephone", "车主电话");
extMap.put(e.getVehicleId(), map);
}
TagUtil.datagrid(response, dataGrid, extMap); |
|