From 686bd303ddc68db338fe352c38392194217168a5 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期二, 11 三月 2025 15:27:59 +0800
Subject: [PATCH] 修改业务逻辑增加项目编码

---
 expert-admin/src/main/java/com/gkhy/web/controller/bussiness/EvaluationController.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/EvaluationController.java b/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/EvaluationController.java
index de8b19f..a9205bc 100644
--- a/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/EvaluationController.java
+++ b/expert-admin/src/main/java/com/gkhy/web/controller/bussiness/EvaluationController.java
@@ -32,7 +32,7 @@
     /**
      * 查询考评管理列表
      */
-    @PreAuthorize("@ss.hasPermi('system:evaluation:list')")
+    //@PreAuthorize("@ss.hasPermi('system:evaluation:list')")
     @ApiImplicitParams({
             @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
             @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10,最大50")
@@ -49,7 +49,7 @@
     /**
      * 新增考评管理
      */
-    @PreAuthorize("@ss.hasPermi('system:evaluation:add')")
+    // @PreAuthorize("@ss.hasPermi('system:evaluation:add')")
     @PostMapping("/add")
     @ApiOperation(value = "新增考评管理")
     public AjaxResult add(@Validated @RequestBody Evaluation evaluation) {
@@ -59,7 +59,7 @@
     /**
      * 修改考评管理
      */
-    @PreAuthorize("@ss.hasPermi('system:evaluation:edit')")
+    //@PreAuthorize("@ss.hasPermi('system:evaluation:edit')")
     @PutMapping("/edit")
     @ApiOperation(value = "修改考评管理")
     public AjaxResult edit(@Validated @RequestBody Evaluation evaluation) {
@@ -69,7 +69,7 @@
     /**
      * 删除考评管理
      */
-    @PreAuthorize("@ss.hasPermi('system:evaluation:remove')")
+    //@PreAuthorize("@ss.hasPermi('system:evaluation:remove')")
     @DeleteMapping("/{ids}")
     @ApiOperation(value = "删除考评管理")
     public AjaxResult remove(@PathVariable Long[] ids) {

--
Gitblit v1.9.2