SpringMVC+highstock实现曲线报表 (二)
ic Map kan(HttpServletRequest request,HttpServletResponse response){
int id = Integer.parseInt(request.getParameter("region"));
List historyList = historyImpl.queHistoryById(id);
Map modelMap = new HashMap(3);
modelMap.put("total", "1");
modelMap.put("data", historyList);
modelMap.put("success", "true");
return modelMap;
}