public ModelAndView del(HttpServletRequest request, HttpServletResponse response) throws Exception { long id = Long.parseLong(request.getParameter("id"));
hrJobService.delById(id); Map model = new HashMap(); model.put("msg","删除职位成功!"); model.put("url","manage/hr/job/list.htm"); return new ModelAndView("/WEB-INF/jsp/messagejs.jsp","model", model); }