OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2021-12-01 a42f592181c23cb1d84d5b66b4b165aa855d57e2
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