From b187030ccd1e5e244c94da8bf8b1d9c50f4f9e2a Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: Wed, 15 Apr 2026 10:52:50 +0800
Subject: [PATCH] 新增增加密码复杂度
---
expert-admin/src/main/java/com/gkhy/web/controller/bussiness/ExpertClassifyController.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/ExpertClassifyController.java b/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/ExpertClassifyController.java
index 6ee3779..82f3ab5 100644
--- a/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/ExpertClassifyController.java
+++ b/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/ExpertClassifyController.java
@@ -27,7 +27,7 @@
return AjaxResult.success(expertClassifyService.classifyTree(expertClassify));
}
- @PreAuthorize("@ss.hasPermi('system:assess:monitor')")
+ // @PreAuthorize("@ss.hasPermi('system:assess:monitor')")
@RepeatSubmit
@ApiOperation(value = "修改专家分类")
@PutMapping("/mod")
@@ -35,7 +35,7 @@
return AjaxResult.success(expertClassifyService.modClassify(expertClassify));
}
- @PreAuthorize("@ss.hasPermi('system:assess:monitor')")
+ // @PreAuthorize("@ss.hasPermi('system:assess:monitor')")
@RepeatSubmit
@ApiOperation(value = "删除专家分类")
@DeleteMapping("/del/{classifyId}")
@@ -44,7 +44,7 @@
}
- @PreAuthorize("@ss.hasPermi('system:assess:monitor')")
+ // @PreAuthorize("@ss.hasPermi('system:assess:monitor')")
@RepeatSubmit
@ApiOperation(value = "新增专家分类")
@PostMapping("/add")
--
Gitblit v1.9.2