示例#1
0
 /**
  * 删除参数信息
  *
  * @param
  * @return
  */
 public ActionForward deleteParamItems(
     ActionMapping mapping,
     ActionForm form,
     HttpServletRequest request,
     HttpServletResponse response)
     throws Exception {
   String strChecked = request.getParameter("strChecked");
   Dto inDto = new BaseDto();
   inDto.put("strChecked", strChecked);
   paramService.deleteParamItem(inDto);
   setOkTipMsg("参数数据删除成功", response);
   return mapping.findForward(null);
 }