Example #1
0
  @RequestMapping("xzKzList-info-remove")
  public String remove(
      @RequestParam("selectedItem") List<Long> selectedItem,
      RedirectAttributes redirectAttributes) {
    List<XzKzList> xzKzLists = xzKzListManager.findByIds(selectedItem);

    xzKzListManager.removeAll(xzKzLists);

    messageHelper.addFlashMessage(redirectAttributes, "core.success.delete", "删除成功");

    return "redirect:/xz/xzKzList-info-list.do";
  }