includeAll(..) 제거

master
mjkhan21 1 year ago
parent 23e111d8df
commit 65aa4fb587

@ -52,7 +52,7 @@ public class CodeController extends AbstractController {
setFetchSize(req);
return setCollectionInfo(
new ModelAndView("jsonView"),
codeService.getCategoryList(req.setIncludeAll(true)),
codeService.getCategoryList(req),
"category"
);
}
@ -132,7 +132,7 @@ public class CodeController extends AbstractController {
setFetchSize(req);
return setCollectionInfo(
new ModelAndView("jsonView"),
codeService.getGroupList(req.setIncludeAll(true)),
codeService.getGroupList(req),
"group"
);
}
@ -229,7 +229,7 @@ public class CodeController extends AbstractController {
setFetchSize(req);
return setCollectionInfo(
new ModelAndView("jsonView"),
codeService.getCodeList(req.setIncludeAll(true)),
codeService.getCodeList(req),
"code"
);
}

Loading…
Cancel
Save