Example #1
0
  /**
   * 批量删除
   *
   * @return
   */
  public String multiDel() {

    String[] ids = getRequest().getParameterValues("ids");
    if (ids != null) {
      for (String id : ids) {
        demensionService.remove(new Long(id));
      }
    }

    jsonString = "{success:true}";

    return SUCCESS;
  }