| | |
| | | @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 |