jiangqs
2023-06-27 046d7ac5bbef4cbb6c6b64f3589e2722d13a07a5
ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/controller/sys/SysDeptController.java
@@ -67,7 +67,7 @@
     * 新增部门
     */
    @RequiresPermissions("system:dept:add")
    @Log(title = "部门管理", businessType = BusinessType.INSERT)
    @Log(title = "部门管理", businessType = BusinessType.INSERT,operContent = "新增部门")
    @PostMapping
    public AjaxResult add(@Validated @RequestBody SysDept dept)
    {
@@ -85,7 +85,7 @@
     * 修改部门
     */
    @RequiresPermissions("system:dept:edit")
    @Log(title = "部门管理", businessType = BusinessType.UPDATE)
    @Log(title = "部门管理", businessType = BusinessType.UPDATE,operContent = "修改部门")
    @PutMapping
    public AjaxResult edit(@Validated @RequestBody SysDept dept)
    {
@@ -111,7 +111,7 @@
     * 删除部门
     */
    @RequiresPermissions("system:dept:remove")
    @Log(title = "部门管理", businessType = BusinessType.DELETE)
    @Log(title = "部门管理", businessType = BusinessType.DELETE,operContent = "删除部门")
    @DeleteMapping("/{deptId}")
    public AjaxResult remove(@PathVariable Long deptId)
    {