@RequestMapping("pjYqcheck-info-remove")
  public String remove(
      @RequestParam("selectedItem") List<Long> selectedItem,
      RedirectAttributes redirectAttributes) {
    List<PjYqcheck> pjYqchecks = pjYqcheckManager.findByIds(selectedItem);

    pjYqcheckManager.removeAll(pjYqchecks);

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

    return "redirect:/gcgl/pjYqcheck-info-list.do";
  }