|
|
|
@ -121,7 +121,7 @@ public class Cvlc01Controller extends ApplicationController {
|
|
|
|
|
public ModelAndView getCivilComplaintReceiptDataList(CrdnQuery query) {
|
|
|
|
|
query.setGridType("receiptData");
|
|
|
|
|
setFetchSize(query);
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnCvlcptService.getCrackdownList(query),"");
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnCvlcptService.getCivilComplaintList(query),"");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**민원접수 초기자료 상세조회 팝업 화면을 연다.<br />
|
|
|
|
@ -194,7 +194,7 @@ public class Cvlc01Controller extends ApplicationController {
|
|
|
|
|
public ModelAndView selectCivilComplaintAnswerTargetDataList(CrdnQuery query) {
|
|
|
|
|
query.setGridType("answerTargetData");
|
|
|
|
|
setFetchSize(query);
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnCvlcptService.getCrackdownList(query), "");
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnCvlcptService.getCivilComplaintList(query), "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**민원자료 목록을 조회한다.<br />
|
|
|
|
@ -211,7 +211,7 @@ public class Cvlc01Controller extends ApplicationController {
|
|
|
|
|
@RequestMapping(name="민원자료 목록", value="/040/list.do")
|
|
|
|
|
public ModelAndView getCivilComplaintList(CrdnQuery query) {
|
|
|
|
|
setFetchSize(query);
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"),crdnCvlcptService.getCrackdownList(query),"");
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"),crdnCvlcptService.getCivilComplaintList(query),"");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**지정한 민원자료를 제거한다.
|
|
|
|
|