You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.9 KiB
Java

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);
}
}