/**
  * 우편번호 조회
  *
  * @param ZipVO 우편번호 정보를 가지고있는 VO
  * @return 우편번호 리스트
  * @exception Exception
  * @see TABLE NAME : TN_ZIP
  */
 @SuppressWarnings("unchecked")
 public List selectZipList(ZipVO searchVO) throws Exception {
   return userManageDAO.selectZipList(searchVO);
 }