コード例 #1
0
ファイル: MemberService.java プロジェクト: hellsenin/gchealth
 public HashMap<String, Object> selectMemberList(ZValue zvl) throws Exception {
   HashMap<String, Object> map = new HashMap<String, Object>();
   List<ZValue> resultList = memberDAO.selectMemberList(zvl);
   int resultListCnt = memberDAO.selectMemberListCnt(zvl);
   map.put("resultList", resultList);
   map.put("resultListCnt", resultListCnt);
   return map;
 }