From c9d2e60f7d1a5cfe9e5b2da93af4d9edeecf5577 Mon Sep 17 00:00:00 2001 From: heheng <heheng@123456> Date: 星期二, 26 十一月 2024 16:04:21 +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