// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package com.hxzkoa.controller; import com.hxzkoa.json.tb_achor; import com.hxzkoa.json.tb_department; import com.hxzkoa.json.tb_person; import com.hxzkoa.json.tb_warning; import com.hxzkoa.services.AnchorService; import com.hxzkoa.services.BasicInfoService; import com.hxzkoa.services.WarningService; import com.hxzkoa.services.ZhwService; import com.hxzkoa.util.PageUtil; import java.util.List; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class iframeController { @Autowired BasicInfoService basicInfoService; @Autowired AnchorService anchorService; @Autowired WarningService warningService; @Autowired ZhwService zhwService; public iframeController() { } @RequestMapping( value = {"/iframeRenYuan.do"}, method = {RequestMethod.POST, RequestMethod.GET} ) public String personManagement2(HttpServletRequest request) { String toPage = "forward:/hxzk/iframe/RenYuan.jsp"; List personManagementList = this.zhwService.getRight(1); request.setAttribute("personManagementList", personManagementList); List departmentList = this.basicInfoService.getDepartmentList(); request.setAttribute("departmentList", departmentList); int curPage = 1; int count = this.basicInfoService.getPersonManagementCount4(); int minPage = PageUtil.getMinPage(count); request.setAttribute("pageList", PageUtil.getPage(minPage)); request.setAttribute("curPage", Integer.valueOf(curPage)); return toPage; } @RequestMapping( value = {"/iframeCheLiang.do"}, method = {RequestMethod.POST, RequestMethod.GET} ) public String cheliangManagement(HttpServletRequest request) { String toPage = "forward:/hxzk/iframe/CheLiang.jsp"; List personManagementList = this.basicInfoService.getPersonManagement2(1); request.setAttribute("personManagementList", personManagementList); List departmentList = this.basicInfoService.getDepartmentList(); request.setAttribute("departmentList", departmentList); int curPage = 1; int count = this.basicInfoService.getPersonManagementCount2(); int minPage = PageUtil.getMinPage(count); request.setAttribute("pageList", PageUtil.getPage(minPage)); request.setAttribute("curPage", Integer.valueOf(curPage)); return toPage; } @RequestMapping( value = {"/iframeWuZi.do"}, method = {RequestMethod.POST, RequestMethod.GET} ) public String wuziManagement(HttpServletRequest request) { String toPage = "forward:/hxzk/iframe/WuZi.jsp"; List personManagementList = this.basicInfoService.getPersonManagement3(1); request.setAttribute("personManagementList", personManagementList); List departmentList = this.basicInfoService.getDepartmentList(); request.setAttribute("departmentList", departmentList); int curPage = 1; int count = this.basicInfoService.getPersonManagementCount3(); int minPage = PageUtil.getMinPage(count); request.setAttribute("pageList", PageUtil.getPage(minPage)); request.setAttribute("curPage", Integer.valueOf(curPage)); return toPage; } @RequestMapping( value = {"/iframeJiZhan.do"}, method = {RequestMethod.POST, RequestMethod.GET} ) public String anchorManagement(HttpServletRequest request) { String toPage = "forward:/hxzk/iframe/JiZhan.jsp"; List achorManagementList = this.anchorService.getAnchorManagement(1); request.setAttribute("achorManagementList", achorManagementList); int curPage = 1; int count = this.anchorService.getAnchorManagementCount(); int minPage = PageUtil.getMinPage(count); request.setAttribute("pageList", PageUtil.getPage(minPage)); request.setAttribute("curPage", Integer.valueOf(curPage)); return toPage; } @RequestMapping( value = {"/iframeSoS.do"}, method = {RequestMethod.POST, RequestMethod.GET} ) public String warningSummary(HttpServletRequest request) { String toPage = "forward:/hxzk/iframe/SOS.jsp"; List warningSummaryList = this.warningService.iframeSoS(1); request.setAttribute("warningSummaryList", warningSummaryList); int curPage = 1; int count = this.warningService.getWarningSummaryCount(); int minPage = PageUtil.getMinPage(count); request.setAttribute("pageList", PageUtil.getPage(minPage)); request.setAttribute("curPage", Integer.valueOf(curPage)); return toPage; } @RequestMapping( value = {"/iframeDdl.do"}, method = {RequestMethod.POST, RequestMethod.GET} ) public String Ddl(HttpServletRequest request) { String toPage = "forward:/hxzk/iframe/Ddl.jsp"; List warningSummaryList = this.warningService.iframeDdl(1); request.setAttribute("warningSummaryList", warningSummaryList); int curPage = 1; int count = this.warningService.getWarningSummaryCount(); int minPage = PageUtil.getMinPage(count); request.setAttribute("pageList", PageUtil.getPage(minPage)); request.setAttribute("curPage", Integer.valueOf(curPage)); return toPage; } }