업무 컨트롤러 패키지경로 수정(task.web 추가), 업무 서비스 추가

main
이범준 1 year ago
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…
Cancel
Save