미사용 컨트롤러 제거(수집서버 요청 컨트롤러)
parent
28ee640fa4
commit
56090ea410
@ -1,99 +0,0 @@
|
||||
package cfs.trsmrcv.web;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.json.simple.JSONObject;
|
||||
import org.json.simple.parser.JSONParser;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import cfs.common.service.CfsCommonService;
|
||||
import cfs.common.util.CallWebService;
|
||||
import cfs.common.util.ResultSmartPlatform;
|
||||
import cfs.trsmrcv.dao.TrsmrcvDao;
|
||||
import cfs.trsmrcv.service.CommSmartPlatformPRPService;
|
||||
|
||||
@Controller
|
||||
public class CommCollectServerController {
|
||||
|
||||
protected Logger logger = LoggerFactory.getLogger(this.getClass());
|
||||
|
||||
@Resource(name = "commSmartPlatformPRPService")
|
||||
private CommSmartPlatformPRPService commSmartPlatformPRPService;
|
||||
|
||||
@Resource(name="cfsCommonService")
|
||||
private CfsCommonService cfsCommonService;
|
||||
|
||||
@Resource(name="trsmrcvDao")
|
||||
private TrsmrcvDao trsmrcvDao;
|
||||
|
||||
/**
|
||||
* 면제 정보 현행화(다자녀 정보 현행화1(바로녹색 연계 및 다자녀 임시 테이블 등록))
|
||||
* <pre></pre>
|
||||
*/
|
||||
@RequestMapping(value = "/rest/broker/brs/getManychild.do", method = RequestMethod.POST)
|
||||
public @ResponseBody Map<String, Object> callPreManychild(
|
||||
@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
|
||||
|
||||
ResultSmartPlatform result = new ResultSmartPlatform();
|
||||
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
|
||||
return result.getResult();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 면제 정보 현행화(다자녀 정보 현행화2(다자녀 임시 테이블 조회 및 면제 마스터 추가/수정))
|
||||
* <pre></pre>
|
||||
*/
|
||||
@RequestMapping(value = "/cfs/trsmrcv/getChgManychild.do", method = RequestMethod.POST)
|
||||
public @ResponseBody Map<String, Object> getChgManychild(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
|
||||
|
||||
ResultSmartPlatform result = new ResultSmartPlatform();
|
||||
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
|
||||
return result.getResult();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 면제 정보 현행화(장애인 여부 확인(과태료 연계))
|
||||
* <pre></pre>
|
||||
*/
|
||||
@RequestMapping(value = "/rest/broker/fis/getRdcxptInfoDspsnVhcle.do", method = RequestMethod.POST)
|
||||
public @ResponseBody Map<String, Object> callRdcxptInfoDspsn(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
|
||||
|
||||
ResultSmartPlatform result = new ResultSmartPlatform();
|
||||
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
|
||||
return result.getResult();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 면제정보 현행화(국가유공자 여부 확인(과태료 연계))
|
||||
* <pre></pre>
|
||||
*/
|
||||
@RequestMapping(value = "/rest/broker/fis/getRdcxptInfoNtttnVhcle.do", method = RequestMethod.POST)
|
||||
public @ResponseBody Map<String, Object> callRdcxptInfoNtttn(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
|
||||
|
||||
|
||||
ResultSmartPlatform result = new ResultSmartPlatform();
|
||||
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
|
||||
return result.getResult();
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue