/**
  * 글을 조회한다.
  *
  * @param vo
  * @return 조회한 글
  * @exception Exception
  */
 public StplatManageVO selectStplatDetail(StplatManageVO vo) throws Exception {
   StplatManageVO resultVO = stplatManageDAO.selectStplatDetail(vo);
   if (resultVO == null) throw processException("info.nodata.msg");
   return resultVO;
 }