大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
创新互联主要从事成都做网站、网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务贵港,10余年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:028-86922220
后台:
- /**计算装机量(分地市)**/
- //http://localhost:8080/smartjsmgr/statistiweb.sp?method=getInstallSiteByArea
- @RequestMapping(params = "method=getInstallSiteByArea", method = RequestMethod.POST)
- public ModelAndView getInstallSiteByArea(HttpServletRequest request,HttpServletResponse response){
- Map
map = new HashMap (); - List
list=new ArrayList (); - try {
- list=statistiwebService.getInstallSiteByArea();
- if (list.size()>0) {
- map.put("date", list);
- map.put("success", "true");
- }else{
- map.put("success", "false");
- }
- } catch (Exception e) {
- // TODO: handle exception
- e.printStackTrace();
- logger.error("查询计算装机量(分地市)失败!!!");
- }
- return new ModelAndView("jsonView",map);
- }