當前位置: 首頁>>代碼示例>>Java>>正文


Java PaginationInfo類代碼示例

本文整理匯總了Java中egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo的典型用法代碼示例。如果您正苦於以下問題:Java PaginationInfo類的具體用法?Java PaginationInfo怎麽用?Java PaginationInfo使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


PaginationInfo類屬於egovframework.rte.ptl.mvc.tags.ui.pagination包,在下文中一共展示了PaginationInfo類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: listResource

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 등록된 자원정보 목록 조회
 * 
 * @param groupVO
 */
@IncludedInfo(name = "접근자원관리", order = 2020, gid = 20)
@RequestMapping(value = "/sec/rmt/listResource.do")
@Secured("ROLE_ADMIN")
public String listResource(
		@ModelAttribute ResourceVO resourceVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	resourceVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", resourceService.selectResourceList(resourceVO));
	int totCnt = resourceService.selectResourceListCnt(resourceVO);

	resourceVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/sec/rmt/ResourceList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:ResourceController.java

示例2: listGroupSearch

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 그룹팝업 화면 
 * 
 * @param groupVO
 */
@RequestMapping("/sec/grp/listGroupPopup.do")
public String listGroupSearch(
		@ModelAttribute GroupVO groupVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	groupVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", groupService.selectGroupList(groupVO));
	int totCnt = groupService.selectGroupListCnt(groupVO);

	groupVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/sec/grp/GroupSearchPopup");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:24,代碼來源:GroupController.java

示例3: listGroupAuthor

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 그룹별 할당된 권한 목록 조회
 * 
 * @param groupAuthorVO
 */
@IncludedInfo(name = "그룹권한관리", order = 2031, gid = 20)
@RequestMapping(value = "/sec/grp/listGroupAuthor.do")
@Secured("ROLE_ADMIN")
public String listGroupAuthor(
		@ModelAttribute GroupAuthorVO groupAuthorVO,
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	groupAuthorVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", groupAuthorService.selectGroupAuthorList(groupAuthorVO));
	int totCnt = groupAuthorService.selectGroupAuthorListCnt(groupAuthorVO);

	groupAuthorVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	AuthorVO authorVO = new AuthorVO();
	model.addAttribute("authorList", authorService.selectAuthorAllList(authorVO));

	return WebUtil.adjustViewName("/sec/grp/GroupAuthor");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:29,代碼來源:GroupAuthorController.java

示例4: listDiary

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 일지관리 목록을 조회한다.
 * 
 * @param diaryManageVO
 */
@IncludedInfo(name = "일지관리", order = 4060, gid = 40)
@RequestMapping(value = "/cop/smt/dsm/listDiary.do")
@Secured("ROLE_USER")
public String listDiary(
		@ModelAttribute DiaryManageVO diaryManageVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	diaryManageVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", diaryManageService.selectDiaryManageList(diaryManageVO));
	int totCnt = (Integer) diaryManageService.selectDiaryManageListCnt(diaryManageVO);

	diaryManageVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/cop/smt/dsm/DiaryList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:DiaryManageController.java

示例5: listFaqJson

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
   * FAQ 목록을 조회한다.
   * 
   * @param faqManageVO
   */
  @RequestMapping(value="/uss/olh/faq/listFaqJson.mdo")
  public ModelAndView listFaqJson(
  		@ModelAttribute FaqManageVO faqManageVO) {
  	
ModelAndView modelAndView = new ModelAndView("jsonView");
  	
  	/** pageing */
  	PaginationInfo paginationInfo = new PaginationInfo();
  	faqManageVO.getSearchVO().fillPageInfo(paginationInfo);

modelAndView.addObject("FaqList", faqManageService.selectFaqList(faqManageVO));
      int totCnt = faqManageService.selectFaqListCnt(faqManageVO);
 
      faqManageVO.getSearchVO().setTotalRecordCount(totCnt);
paginationInfo.setTotalRecordCount(totCnt);

modelAndView.addObject(paginationInfo);

      return modelAndView;
  }
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:MblFaqManageController.java

示例6: listEmplyrPopupJson

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 담당자관리 목록을 조회한다.
 * 
 * @param 	schdulManageVO 	SchdulManageVO
 * @return					jsonView
 */
@RequestMapping(value="/cop/smt/sim/listEmplyrPopupJson.mdo")
public ModelAndView listEmplyrPopupJson(
		@ModelAttribute SchdulManageVO schdulManageVO) {

	ModelAndView modelAndView = new ModelAndView("jsonView");

   	PaginationInfo paginationInfo = new PaginationInfo();
   	schdulManageVO.getSearchVO().fillPageInfo(paginationInfo);
	
   	modelAndView.addObject("resultList", schdulManageService.selectEmplyrList(schdulManageVO));
       int totCnt = (Integer)schdulManageService.selectEmplyrListCnt(schdulManageVO);

       schdulManageVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	modelAndView.addObject(paginationInfo);
       
       return modelAndView; 
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:MblSchdulManageController.java

示例7: listServerEqpmn

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 서버장비를 관리하기 위해 등록된 서버장비목록을 조회한다.
 * 
 * @param serverEqpmnVO
 */
@IncludedInfo(name = "서버정보관리", order = 6250, gid = 60)
@RequestMapping(value = "/sym/sym/srv/listServerEqpmn.do")
@Secured("ROLE_ADMIN")
public String listServerEqpmn(
		@ModelAttribute ServerEqpmnVO serverEqpmnVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	serverEqpmnVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", serverService.selectServerEqpmnList(serverEqpmnVO));
	int totCnt = serverService.selectServerEqpmnListCnt(serverEqpmnVO);

	serverEqpmnVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/sym/sym/srv/ServerEqpmnList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:ServerController.java

示例8: listServer

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 서버정보를 관리하기 위해 등록된 서버목록을 조회한다.
 * 
 * @param serverVO
 */
@IncludedInfo(name = "서버(S/W)목록", order = 6251, gid = 60)
@RequestMapping(value = "/sym/sym/srv/listServer.do")
@Secured("ROLE_ADMIN")
public String listServer(
		@ModelAttribute ServerVO serverVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	serverVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", serverService.selectServerList(serverVO));
	int totCnt = serverService.selectServerListCnt(serverVO);

	serverVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/sym/sym/srv/ServerList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:ServerController.java

示例9: listBoardMasterPopup

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 게시판 마스터 선택 팝업을 위한 목록을 조회한다.
 * 
 * @param searchVO
 */
@RequestMapping("/cop/bbs/listBoardMasterPopup.do")
public String listBoardMasterPopup(
		@ModelAttribute BoardMasterVO boardMasterVO,
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	boardMasterVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", bbsMasterService.selectNotUsedBdMstrList(boardMasterVO));
	int totCnt = bbsMasterService.selectNotUsedBdMstrListCnt(boardMasterVO);

	boardMasterVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);
	
	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/cop/bbs/BoardMasterPopup");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:24,代碼來源:BBSMasterController.java

示例10: listRequestOffer

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 지식정보제공/지식정보요청 목록을 조회한다.
 * 
 * @param requestOfferVO
 */
@IncludedInfo(name = "지식정보요청/제공", order = 8060, gid = 80)
@RequestMapping(value = "/dam/spe/req/listRequestOffer.do")
@Secured("ROLE_USER")
public String listRequestOffer(
		@ModelAttribute RequestOfferVO requestOfferVO, 
		ModelMap model) {
	
	PaginationInfo paginationInfo = new PaginationInfo();
	requestOfferVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", requestOfferService.selectRequestOfferList(requestOfferVO));
	int totCnt = (Integer) requestOfferService.selectRequestOfferListCnt(requestOfferVO);

	requestOfferVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/dam/spe/req/RequestOfferList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:RequestOfferController.java

示例11: listKnoSpecialist

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 등록된 지식전문가 정보를 조회 한다.
 * 
 * @param knoSpecialistVO
 */
@IncludedInfo(name = "지식전문가관리", order = 8020, gid = 80)
@RequestMapping(value = "/dam/spe/spe/listKnoSpecialist.do")
@Secured("ROLE_USER")
public String listKnoSpecialist(
		@ModelAttribute KnoSpecialistVO knoSpecialistVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	knoSpecialistVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", knoSpecialistService.selectKnoSpecialistList(knoSpecialistVO));
	int totCnt = knoSpecialistService.selectKnoSpecialistListCnt(knoSpecialistVO);

	knoSpecialistVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/dam/spe/spe/KnoSpecialistList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:KnoSpecialistController.java

示例12: listLeaderSttus

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 간부상태 정보에 대한 목록을 조회한다. (관리자 화면)
 * 
 * @param leaderSttusVO
 */
@RequestMapping("/cop/smt/lsm/listLeaderSttus.do")
public String listLeaderSttus(
		@ModelAttribute LeaderSttusVO leaderSttusVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	leaderSttusVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", leaderSchdulService.selectLeaderSttusList(leaderSttusVO));
	int totCnt = leaderSchdulService.selectLeaderSttusListCnt(leaderSttusVO);

	leaderSttusVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/cop/smt/lsm/LeaderSttusList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:24,代碼來源:LeaderSchdulController.java

示例13: listKnoManagement

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 등록된 지식정보 정보를 조회 한다.
 * 
 * @param knoManagementVO
 */
@IncludedInfo(name = "지식정보관리", order = 8050, gid = 80)
@RequestMapping(value = "/dam/mgm/listKnoManagement.do")
@Secured("ROLE_USER")
public String listKnoManagement(
		@ModelAttribute KnoManagementVO knoManagementVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	knoManagementVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", knoManagementService.selectKnoManagementList(knoManagementVO));
	int totCnt = knoManagementService.selectKnoManagementListCnt(knoManagementVO);

	knoManagementVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/dam/mgm/KnoManagementList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:KnoManagementController.java

示例14: listZipPopup

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 우편번호 찾기 팝업 메인창을 호출한다.
 * 
 * @param zipVO
 */
@RequestMapping(value = "/sym/ccm/zip/listZipPopup.do")
public String listZipPopup(
		@ModelAttribute ZipVO zipVO, 
		ModelMap model) {
	
	PaginationInfo paginationInfo = new PaginationInfo();
	zipVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", zipManageService.selectZipList(zipVO));
		int totCnt = zipManageService.selectZipListCnt(zipVO);

		zipVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/sym/ccm/zip/ZipSearchPopup");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:24,代碼來源:ZipManageController.java

示例15: listTemplate

import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; //導入依賴的package包/類
/**
 * 템플릿 목록을 조회한다.
 * 
 * @param templateInfVO
 */
@IncludedInfo(name = "템플릿관리", order = 4020, gid = 40)
@RequestMapping("/cop/tpl/listTemplate.do")
@Secured("ROLE_ADMIN")
public String listTemplate(
		@ModelAttribute TemplateInfVO templateInfVO, 
		ModelMap model) {

	PaginationInfo paginationInfo = new PaginationInfo();
	templateInfVO.getSearchVO().fillPageInfo(paginationInfo);

	model.addAttribute("resultList", tmplatService.selectTemplateInfs(templateInfVO));
	int totCnt = tmplatService.selectTemplateInfsCnt(templateInfVO);

	templateInfVO.getSearchVO().setTotalRecordCount(totCnt);
	paginationInfo.setTotalRecordCount(totCnt);

	model.addAttribute(paginationInfo);

	return WebUtil.adjustViewName("/cop/tpl/TemplateList");
}
 
開發者ID:aramsoft,項目名稱:aramcomp,代碼行數:26,代碼來源:TemplateController.java


注:本文中的egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。