コード例 #1
0
  /**
   * 커뮤니티 사용자 목록을 조회한다.
   *
   * @see
   *     egovframework.let.cop.com.service.EgovUserInfManageService#selectCmmntyUserList(egovframework.let.cop.com.service.UserInfVO)
   */
  public Map<String, Object> selectCmmntyUserList(UserInfVO userVO) throws Exception {
    List<UserInfVO> result = userInfDAO.selectCmmntyUserList(userVO);
    int cnt = userInfDAO.selectCmmntyUserListCnt(userVO);

    Map<String, Object> map = new HashMap<String, Object>();

    map.put("resultList", result);
    map.put("resultCnt", Integer.toString(cnt));

    return map;
  }
コード例 #2
0
 /**
  * 커뮤니티에 대한 모든 사용자 목록을 조회한다.
  *
  * @see
  *     egovframework.let.cop.com.service.EgovUserInfManageService#selectAllCmmntyUser(egovframework.let.cop.com.service.UserInfVO)
  */
 public List<UserInfVO> selectAllCmmntyUser(UserInfVO userVO) throws Exception {
   return userInfDAO.selectAllCmmntyUser(userVO);
 }