구 시설api 제거
parent
0b87394eb5
commit
c329e163bf
@ -1,63 +0,0 @@
|
|||||||
package cfs.trsmrcv.web;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
|
|
||||||
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.trsmrcv.dao.CommSisulDao;
|
|
||||||
|
|
||||||
|
|
||||||
@Controller
|
|
||||||
public class Comm3HoIrregularController {
|
|
||||||
|
|
||||||
protected Logger logger = LoggerFactory.getLogger(this.getClass());
|
|
||||||
|
|
||||||
@Resource(name="commSisulDao")
|
|
||||||
private CommSisulDao commSisulDao;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*시설공단 미납 목록 조회 (차량번호,주민번호)
|
|
||||||
* <pre></pre>
|
|
||||||
*/
|
|
||||||
@RequestMapping(value="/rest/cfs/selectSisulDefaultResiList.do", method=RequestMethod.POST)
|
|
||||||
public @ResponseBody List<Map<String, Object>> selectSisulDefaultResiList(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
|
|
||||||
|
|
||||||
return commSisulDao.selectSisulDefaultResiListOld(param);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*시설공단 과태료 목록 조회
|
|
||||||
* <pre></pre>
|
|
||||||
*/
|
|
||||||
@RequestMapping(value="/rest/cfs/sisulPenaltyNotification.do", method=RequestMethod.POST)
|
|
||||||
public @ResponseBody List<Map<String, Object>> sisulPenaltyNotification(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
|
|
||||||
|
|
||||||
|
|
||||||
return commSisulDao.sisulPenaltyNotificationOld(param);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*시설공단 과오납 목록 조회 (차량번호)
|
|
||||||
* <pre></pre>
|
|
||||||
*/
|
|
||||||
@RequestMapping(value="/rest/cfs/selectSisulOverFareList.do", method=RequestMethod.POST)
|
|
||||||
public @ResponseBody List<Map<String, Object>> selectSisulOverFareList(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
|
|
||||||
|
|
||||||
|
|
||||||
return commSisulDao.selectSisulOverFareListOld(param);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue