업무지원 컨트롤러 수정
parent
e6d938c747
commit
d7bb624bb6
@ -0,0 +1,15 @@
|
|||||||
|
package cokr.xit.fims.sprt.web;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
public class BpvSprtController {
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
@RequestMapping(name="전용차로과태료업무 업무지원", value="/BPV/sprt/sprt01/")
|
||||||
|
class BpvSprt01Controller extends Sprt01Controller {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
package cokr.xit.fims.sprt.web;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.servlet.ModelAndView;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
public class CmnSprtController {
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
class CmnSprt01Controller extends Sprt01Controller {
|
||||||
|
|
||||||
|
/** 통합조회 메인화면을 연다.
|
||||||
|
* @return fims/sprt/sprt01010-main
|
||||||
|
*/
|
||||||
|
@RequestMapping(name="통합조회 메인", value="/010/main.do")
|
||||||
|
public ModelAndView integratedInquireMain() {
|
||||||
|
ModelAndView mav = new ModelAndView();
|
||||||
|
mav.setViewName("fims/sprt/sprt01010-main");
|
||||||
|
mav.addObject("pageName", "sprt01010-main");
|
||||||
|
|
||||||
|
|
||||||
|
return mav;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cokr.xit.fims.sprt.web;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
public class DpvSprtController {
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
@RequestMapping(name="장애인과태료업무 업무지원", value="/DPV/sprt/sprt01/")
|
||||||
|
class DpvSprt01Controller extends Sprt01Controller {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cokr.xit.fims.sprt.web;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
public class EcaSprtController {
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
@RequestMapping(name="전기차과태료업무 업무지원", value="/ECA/sprt/sprt01/")
|
||||||
|
class EcaSprt01Controller extends Sprt01Controller {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cokr.xit.fims.sprt.web;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
public class PvsSprtController {
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
@RequestMapping(name="주정차과태료업무 업무지원", value="/PVS/sprt/sprt01/")
|
||||||
|
class PvsSprt01Controller extends Sprt01Controller {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,33 +0,0 @@
|
|||||||
package cokr.xit.fims.sprt.web;
|
|
||||||
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
|
||||||
|
|
||||||
/**업무지원 서비스 웹 컨트롤러.<br />
|
|
||||||
* {웹 컨텍스트}/sprt/sprt01 로 접근할 수 있다.
|
|
||||||
* @author leebj
|
|
||||||
*/
|
|
||||||
@Controller
|
|
||||||
public class TaskSprt01Controller extends Sprt01Controller {
|
|
||||||
|
|
||||||
|
|
||||||
@RequestMapping(name="주정차과태료업무 개별총정보 조회", value="/020/PVS/info.do")
|
|
||||||
public ModelAndView getPvsTotalDataInfo(String crdnId) {
|
|
||||||
return getTotalDataInfo(crdnId);
|
|
||||||
}
|
|
||||||
@RequestMapping(name="전용차로과태료업무 개별총정보 조회", value="/020/BPV/info.do")
|
|
||||||
public ModelAndView getBpvTotalDataInfo(String crdnId) {
|
|
||||||
return getTotalDataInfo(crdnId);
|
|
||||||
}
|
|
||||||
@RequestMapping(name="장애인과태료업무 개별총정보 조회", value="/020/DPV/info.do")
|
|
||||||
public ModelAndView getDpvTotalDataInfo(String crdnId) {
|
|
||||||
return getTotalDataInfo(crdnId);
|
|
||||||
}
|
|
||||||
@RequestMapping(name="전기차과태료업무 개별총정보 조회", value="/020/ECA/info.do")
|
|
||||||
public ModelAndView getEcaTotalDataInfo(String crdnId) {
|
|
||||||
return getTotalDataInfo(crdnId);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue