소스 정리
parent
147c350ab5
commit
c41a13912e
@ -1,86 +0,0 @@
|
|||||||
package cokr.xit.fims.task.web;
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
|
||||||
|
|
||||||
import cokr.xit.fims.nxrp.NisIndivQuery;
|
|
||||||
import cokr.xit.fims.nxrp.NxrpMtchg;
|
|
||||||
import cokr.xit.fims.nxrp.NxrpMtchgQuery;
|
|
||||||
|
|
||||||
@Controller
|
|
||||||
public class DpvController {
|
|
||||||
|
|
||||||
public static final String CLASS_URL = "/DPV";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Controller
|
|
||||||
@RequestMapping(name="장애인과태료업무 차세대 세외수입 연계", value=CLASS_URL+Nxrp01Controller.CLASS_URL)
|
|
||||||
class Nxrp01Controller extends cokr.xit.fims.nxrp.web.Nxrp01Controller {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="차세대 세외수입 과태료 대장 단속 정보 등록", value=METHOD_URL.createIndividualA01)
|
|
||||||
public ModelAndView createIndividualA01(NisIndivQuery req) {
|
|
||||||
return super.createIndividualA01(req);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="차세대 세외수입 과태료 대장 등록 자료 상세 조회", value=METHOD_URL.updateIndividualA02TaskApplication)
|
|
||||||
public ModelAndView updateIndividualA02TaskApplication(NisIndivQuery req) {
|
|
||||||
return super.updateIndividualA02TaskApplication(req);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="차세대 세외수입 과태료 대장 등록 자료 상세 조회", value=METHOD_URL.updateIndividualA03TaskApplication)
|
|
||||||
public ModelAndView updateIndividualA03TaskApplication(NisIndivQuery req) {
|
|
||||||
return super.updateIndividualA03TaskApplication(req);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Controller
|
|
||||||
@RequestMapping(name="장애인과태료업무 세외수입 매핑", value=CLASS_URL+Nxrp03Controller.CLASS_URL)
|
|
||||||
class Nxrp03Controller extends cokr.xit.fims.nxrp.web.Nxrp03Controller {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="세외수입 등록 연계 및 매핑 등록", value=METHOD_URL.createNonTaxReceiptLink)
|
|
||||||
public ModelAndView createNonTaxReceiptLink(NxrpMtchgQuery req) {
|
|
||||||
return super.createNonTaxReceiptLink(req);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="세외수입 조회 연계 및 매핑 수정", value=METHOD_URL.updateNonTaxReceiptLink)
|
|
||||||
public ModelAndView updateNonTaxReceiptLink(NxrpMtchgQuery req) {
|
|
||||||
return super.updateNonTaxReceiptLink(req);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="세외수입 매핑 내역 등록", value=METHOD_URL.createNonTaxReceiptMatching)
|
|
||||||
public ModelAndView createNonTaxReceiptMatching(NxrpMtchg nxrpMtchg) {
|
|
||||||
return super.createNonTaxReceiptMatching(nxrpMtchg);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="세외수입 매핑 내역 수정", value=METHOD_URL.updateNonTaxReceiptMatching)
|
|
||||||
public ModelAndView updateNonTaxReceiptMatching(NxrpMtchg nxrpMtchg) {
|
|
||||||
return super.updateNonTaxReceiptMatching(nxrpMtchg);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@RequestMapping(name="세외수입 매핑 내역 제거", value=METHOD_URL.removeNonTaxReceiptMatching)
|
|
||||||
public ModelAndView removeNonTaxReceiptMatching(NxrpMtchg nxrpMtchg) {
|
|
||||||
return super.removeNonTaxReceiptMatching(nxrpMtchg);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue