/**
   * 결재자 정보에 대한 팝업 목록을 조회한다.
   *
   * @param sanctnerVO
   */
  @RequestMapping("/uss/ion/ism/listSanctnerPopup.do")
  public String selectSanctnerList(@ModelAttribute SanctnerVO sanctnerVO, ModelMap model) {

    PaginationInfo paginationInfo = new PaginationInfo();
    sanctnerVO.fillPageInfo(paginationInfo);

    model.addAttribute("resultList", infrmlSanctnService.selectSanctnerList(sanctnerVO));

    int totCnt = infrmlSanctnService.selectSanctnerListCnt(sanctnerVO);
    sanctnerVO.setTotalRecordCount(totCnt);

    paginationInfo.setTotalRecordCount(totCnt);
    model.addAttribute("paginationInfo", paginationInfo);

    return WebUtil.adjustViewName("/uss/ion/ism/SanctnerListPopup");
  }