ibatis 쿼리 순서
select auth_grp_cd, auth_grp_nm, auth_type from auth_grpwhere use_yn = 'Y'order by app_gubun asc]]> @SuppressWarnings("unchecked")@Overridepublic List getAuthGrpCdList(Map condition) throws Exception {return (List)sqlMap.queryForList("admin.authGrpCd",condition);} public List getAuthGrpCdList(Map condition) throws Exception {return adminDao.getAuthGrpCdList(condition);} // auth grp cd 목록 가져오기Lis..