OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2022-01-13 ce506fb6505b7311a6025c2b20a1ae38709b87d8
src/main/java/kr/wisestone/owl/web/controller/UserLevelController.java
@@ -61,6 +61,18 @@
        return this.setSuccessMessage(resJsonData);
    }
    //  사용자등급명만 수정
    @RequestMapping(value = "/userLevel/nameModify", produces = MediaType.APPLICATION_JSON_VALUE)
    public
    @ResponseBody
    Map<String, Object> nameModify(@RequestBody Map<String, Map<String, Object>> params) {
        Map<String, Object> resJsonData = new HashMap<>();
        this.userLevelService.modifyLevelName(UserLevelForm.make(params.get(Constants.REQ_KEY_CONTENT)));
        return this.setSuccessMessage(resJsonData);
    }
    //  사용자등급 수정
    @RequestMapping(value = "/userLevel/modify", produces = MediaType.APPLICATION_JSON_VALUE)
    public