From 059a17ed08ef946e921f538dce08bd7258a11fb3 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: Wed, 02 Apr 2025 15:44:44 +0800
Subject: [PATCH] 增加专家导出
---
expert-admin/src/main/java/com/gkhy/web/controller/bussiness/ExpertClassifyController.java | 8 ++++----
1 files changed, 4 insertions(+), 4 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 8c669c7..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
@@ -22,12 +22,12 @@
@ApiOperation(value = "专家分类列表(树形)")
@GetMapping("/tree")
@Anonymous
- @RepeatSubmit
+ // @RepeatSubmit
public AjaxResult classifyTree(SysExpertClassify expertClassify){
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