/**
  * userManageVO 선택된 유형의 사용자 조회 총 갯수를 조회한다.
  *
  * @param userManageVO 총 갯수 조회조건 Vo
  * @return int 조회한 목록의 리스트
  * @exception Exception
  * @see COUNT(*) totcnt
  */
 public int selectUserListTotCnt(UserManageVO userManageVO) throws Exception {
   return userManageDAO.selectUserListTotCnt(userManageVO);
 }