|
|
@ -1,10 +1,15 @@
|
|
|
|
package cokr.xit.fims.crdn.web;
|
|
|
|
package cokr.xit.fims.crdn.web;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cokr.xit.fims.crdn.Crdn;
|
|
|
|
import cokr.xit.fims.crdn.CrdnQuery;
|
|
|
|
import cokr.xit.fims.crdn.CrdnQuery;
|
|
|
|
|
|
|
|
import cokr.xit.fims.crdn.service.Crdn06Service;
|
|
|
|
|
|
|
|
|
|
|
|
/**단속 관리 서비스 웹 컨트롤러.<br />
|
|
|
|
/**단속 관리 서비스 웹 컨트롤러.<br />
|
|
|
|
* {웹 컨텍스트}/crdn/crdn06 로 접근할 수 있다.
|
|
|
|
* {웹 컨텍스트}/crdn/crdn06 로 접근할 수 있다.
|
|
|
@ -13,6 +18,9 @@ import cokr.xit.fims.crdn.CrdnQuery;
|
|
|
|
@Controller
|
|
|
|
@Controller
|
|
|
|
public class TaskCrdn06Controller extends Crdn06Controller {
|
|
|
|
public class TaskCrdn06Controller extends Crdn06Controller {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource(name="crdn06Service")
|
|
|
|
|
|
|
|
private Crdn06Service crdn06Service;
|
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(name="주정차과태료업무 단속자료 목록", value="/010/PVS/list.do")
|
|
|
|
@RequestMapping(name="주정차과태료업무 단속자료 목록", value="/010/PVS/list.do")
|
|
|
|
public ModelAndView getPvsCrackdownList(CrdnQuery req) {
|
|
|
|
public ModelAndView getPvsCrackdownList(CrdnQuery req) {
|
|
|
|
return getCrackdownList(req);
|
|
|
|
return getCrackdownList(req);
|
|
|
@ -29,12 +37,27 @@ public class TaskCrdn06Controller extends Crdn06Controller {
|
|
|
|
public ModelAndView getEcaCrackdownList(CrdnQuery req) {
|
|
|
|
public ModelAndView getEcaCrackdownList(CrdnQuery req) {
|
|
|
|
return getCrackdownList(req);
|
|
|
|
return getCrackdownList(req);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(name="장애인과태료업무 표지정보미확인자료 목록", value="/030/DPV/list.do")
|
|
|
|
@RequestMapping(name="장애인과태료업무 표지정보미확인자료 목록", value="/030/DPV/list.do")
|
|
|
|
public ModelAndView getTagInformationUndefinedDataList(CrdnQuery req) {
|
|
|
|
public ModelAndView getTagInformationUndefinedDataList(CrdnQuery req) {
|
|
|
|
return getCrackdownList(req.setGrid("TagInformationUndefinedData"));
|
|
|
|
return getCrackdownList(req.setGrid("TagInformationUndefinedData"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**표지정보 미확인 자료를 수정한다.
|
|
|
|
|
|
|
|
* @param crdn 단속 대장 정보
|
|
|
|
|
|
|
|
* @return jsonView
|
|
|
|
|
|
|
|
* <pre><code> {
|
|
|
|
|
|
|
|
* "saved": 수정되었으면 true, 그렇지 않으면 false
|
|
|
|
|
|
|
|
* }</code></pre>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@PostMapping(name = "단속 대장 수정", value = "/030/DPV/update.do")
|
|
|
|
|
|
|
|
public ModelAndView update(Crdn crdn) {
|
|
|
|
|
|
|
|
crdn.setUpdateInfomation("TagInformationUndefinedData");
|
|
|
|
|
|
|
|
boolean saved = crdn06Service.update(crdn);
|
|
|
|
|
|
|
|
return new ModelAndView("jsonView")
|
|
|
|
|
|
|
|
.addObject("saved", saved);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(name="주정차과태료업무 과태료 감경 자료 목록", value="/040/PVS/list.do")
|
|
|
|
@RequestMapping(name="주정차과태료업무 과태료 감경 자료 목록", value="/040/PVS/list.do")
|
|
|
|
public ModelAndView getPvsFineReductionDataList(CrdnQuery req) {
|
|
|
|
public ModelAndView getPvsFineReductionDataList(CrdnQuery req) {
|
|
|
|
return getCrackdownList(req.setGrid("FineReductionData"));
|
|
|
|
return getCrackdownList(req.setGrid("FineReductionData"));
|
|
|
|