|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('system:dept:edit')") | 
|---|
|  |  |  | @Log(title = "部门管理", businessType = BusinessType.UPDATE) | 
|---|
|  |  |  | @PutMapping | 
|---|
|  |  |  | @PostMapping("/edit") | 
|---|
|  |  |  | public AjaxResult edit(@Validated @RequestBody SysDept dept) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | if (UserConstants.NOT_UNIQUE.equals(deptService.checkDeptNameUnique(dept))) | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('system:dept:remove')") | 
|---|
|  |  |  | @Log(title = "部门管理", businessType = BusinessType.DELETE) | 
|---|
|  |  |  | @DeleteMapping("/{deptId}") | 
|---|
|  |  |  | @GetMapping("/remove/{deptId}") | 
|---|
|  |  |  | public AjaxResult remove(@PathVariable Long deptId) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | if (deptService.hasChildByDeptId(deptId)) | 
|---|