OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2021-11-01 58c96fb54e3e6bbf0c0df27e39eaff814f52e9d4
src/main/java/kr/wisestone/owl/web/controller/WorkspaceController.java
@@ -25,7 +25,29 @@
    @Autowired
    private WorkspaceService workspaceService;
    //  업무공간 조회
    //  사용자 등급 조회
    @RequestMapping(value = "/workspace/levelFind", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
    public
    @ResponseBody
    Map<String, Object> levelFind() {
        Map<String, Object> resJsonData = new HashMap<>();
        this.workspaceService.find(resJsonData);
        //this.workspaceService.levelFind(resJsonData);
        return this.setSuccessMessage(resJsonData);
    }
    //  부서 조회
    @RequestMapping(value = "/workspace/departmentFind", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
    public
    @ResponseBody
    Map<String, Object> departmentFind() {
        Map<String, Object> resJsonData = new HashMap<>();
        this.workspaceService.find(resJsonData);
        //this.workspaceService.departmentFind(resJsonData);
        return this.setSuccessMessage(resJsonData);
    }
    //  사용자 관리 조회
    @RequestMapping(value = "/workspace/find", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
    public
    @ResponseBody