업무 컨트롤러 패키지경로 수정(task.web 추가), 업무 서비스 추가
parent
5e74c8a721
commit
224e11a809
@ -0,0 +1,14 @@
|
|||||||
|
package cokr.xit.fims.task.service.bean;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import cokr.xit.fims.task.service.taskService;
|
||||||
|
import cokr.xit.foundation.component.AbstractServiceBean;
|
||||||
|
|
||||||
|
/**업무 서비스 인터페이스의 전용차로위반 업무 서비스 구현체
|
||||||
|
* @author leebj
|
||||||
|
*/
|
||||||
|
@Service("bpvService")
|
||||||
|
public class BpvServiceBean extends AbstractServiceBean implements taskService {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cokr.xit.fims.task.service.bean;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import cokr.xit.fims.task.service.taskService;
|
||||||
|
import cokr.xit.foundation.component.AbstractServiceBean;
|
||||||
|
|
||||||
|
/**업무 서비스 인터페이스의 장애인주차구역위반 업무 구현체
|
||||||
|
* @author leebj
|
||||||
|
*/
|
||||||
|
@Service("dpvService")
|
||||||
|
public class DpvServiceBean extends AbstractServiceBean implements taskService {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cokr.xit.fims.task.service.bean;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import cokr.xit.fims.task.service.taskService;
|
||||||
|
import cokr.xit.foundation.component.AbstractServiceBean;
|
||||||
|
|
||||||
|
/**업무 서비스 인터페이스의 전기차주차구역위반 업무 구현체
|
||||||
|
* @author leebj
|
||||||
|
*/
|
||||||
|
@Service("ecaService")
|
||||||
|
public class EcaServiceBean extends AbstractServiceBean implements taskService {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cokr.xit.fims.task.service.bean;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import cokr.xit.fims.task.service.taskService;
|
||||||
|
import cokr.xit.foundation.component.AbstractServiceBean;
|
||||||
|
|
||||||
|
/**업무 서비스 인터페이스의 주정차위반 업무 서비스 구현체
|
||||||
|
* @author leebj
|
||||||
|
*/
|
||||||
|
@Service("pvsService")
|
||||||
|
public class PvsServiceBean extends AbstractServiceBean implements taskService {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cokr.xit.fims.task.service.bean;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import cokr.xit.fims.task.service.taskService;
|
||||||
|
import cokr.xit.foundation.component.AbstractServiceBean;
|
||||||
|
|
||||||
|
/**업무 서비스 인터페이스의 밤샘주차 업무 서비스 구현체
|
||||||
|
* @author leebj
|
||||||
|
*/
|
||||||
|
@Service("tpvService")
|
||||||
|
public class TpvServiceBean extends AbstractServiceBean implements taskService {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
package cokr.xit.fims.task.service;
|
||||||
|
|
||||||
|
public interface taskService {
|
||||||
|
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package cokr.xit.fims.task;
|
package cokr.xit.fims.task.web;
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
@ -1,4 +1,4 @@
|
|||||||
package cokr.xit.fims.task;
|
package cokr.xit.fims.task.web;
|
||||||
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
@ -1,4 +1,4 @@
|
|||||||
package cokr.xit.fims.task;
|
package cokr.xit.fims.task.web;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package cokr.xit.fims.task;
|
package cokr.xit.fims.task.web;
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
@ -1,4 +1,4 @@
|
|||||||
package cokr.xit.fims.task;
|
package cokr.xit.fims.task.web;
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
Loading…
Reference in New Issue