文件上传缩略图 时间:2019-01-19 08:06:54 【文件属性】: 文件名称:文件上传缩略图 文件大小:11KB 文件格式:TXT 更新时间:2019-01-19 08:06:54 上传 可以在图片上传的后进行图片缩略 public Map querySystemList(){ Map map = new HashMap(); List priSystemModelList = priSystemDao.querySystemList(); List> mapList = new ArrayList>(); for(Object[] objects : priSystemModelList){ Map tempMap = new HashMap(); tempMap.put("systemId",objects[0]); tempMap.put("systemName",objects[1]); tempMap.put("deleteType",objects[2]); tempMap.put("discription",objects[3]); tempMap.put("systemHomePage",objects[4]); tempMap.put("controlParam",objects[5]); tempMap.put("roleCount",objects[6]); tempMap.put("userCount",objects[7]); tempMap.put("groupCount",objects[8]); mapList.add(tempMap); } map.put("root",mapList); return map; } 立即下载