이지우 - 관리자 관리 totcnt 형변환
This commit is contained in:
parent
d14441b4cc
commit
286707ffdb
@ -207,7 +207,7 @@ public class EgovUserManageController {
|
|||||||
List<?> resultList = userManageService.selectUserList(userSearchVO) ;
|
List<?> resultList = userManageService.selectUserList(userSearchVO) ;
|
||||||
model.addAttribute("resultList", resultList);
|
model.addAttribute("resultList", resultList);
|
||||||
//paginationInfo.setTotalRecordCount( resultList.size()> 0 ? ((Long)((EgovMap)resultList.get(0)).get("totCnt")).intValue() : 0);
|
//paginationInfo.setTotalRecordCount( resultList.size()> 0 ? ((Long)((EgovMap)resultList.get(0)).get("totCnt")).intValue() : 0);
|
||||||
paginationInfo.setTotalRecordCount( resultList.size()> 0 ? ((int)((EgovMap)resultList.get(0)).get("totcnt")) : 0);
|
paginationInfo.setTotalRecordCount( resultList.size()> 0 ? Integer.parseInt(((EgovMap)resultList.get(0)).get("totcnt").toString()) : 0);
|
||||||
model.addAttribute("paginationInfo", paginationInfo);
|
model.addAttribute("paginationInfo", paginationInfo);
|
||||||
|
|
||||||
//권한조회
|
//권한조회
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user