From 63ebc0007e9958bd6680c6841a7460b053275790 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期一, 22 四月 2024 14:20:15 +0800 Subject: [PATCH] 将 @PreAuthorize 全部注释 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailController.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailController.java index f966dea..ca09670 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailController.java @@ -52,7 +52,7 @@ * 鏌ヨ鎶ラ攢鐢宠鏄庣粏鍒楄〃 */ @ApiOperation("鏌ヨ鎶ラ攢鐢宠鏄庣粏鍒楄〃") - //@PreAuthorize("@ss.hasPermi('project:reimbursementdetail:list')") + //// @PreAuthorize("@ss.hasPermi('project:reimbursementdetail:list')") @GetMapping("/list") public TableDataInfo list(ServiceReimbursementdetail serviceReimbursementdetail) { startPage(); @@ -65,7 +65,7 @@ * 瀵煎嚭鎶ラ攢鐢宠鏄庣粏鍒楄〃 */ @ApiOperation("瀵煎嚭鎶ラ攢鐢宠鏄庣粏鍒楄〃") - //@PreAuthorize("@ss.hasPermi('project:reimbursementdetail:export')") + //// @PreAuthorize("@ss.hasPermi('project:reimbursementdetail:export')") @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(ServiceReimbursementdetail serviceReimbursementdetail) { @@ -87,7 +87,7 @@ * 鑾峰彇鎶ラ攢鐢宠鏄庣粏璇︾粏淇℃伅 */ @ApiOperation("鑾峰彇鎶ラ攢鐢宠鏄庣粏璇︾粏淇℃伅") - //@PreAuthorize("@ss.hasPermi('project:reimbursementdetail:query')") + //// @PreAuthorize("@ss.hasPermi('project:reimbursementdetail:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return AjaxResult.success(serviceReimbursementdetailService.getById(id)); @@ -97,7 +97,7 @@ * 鏂板鎶ラ攢鐢宠鏄庣粏 */ @ApiOperation("鏂板鎶ラ攢鐢宠鏄庣粏") - //@PreAuthorize("@ss.hasPermi('project:reimbursementdetail:add')") + //// @PreAuthorize("@ss.hasPermi('project:reimbursementdetail:add')") @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.INSERT) @PostMapping("/add") @RepeatSubmit @@ -118,7 +118,7 @@ * 淇敼鎶ラ攢鐢宠鏄庣粏 */ @ApiOperation("淇敼鎶ラ攢鐢宠鏄庣粏") - //@PreAuthorize("@ss.hasPermi('project:reimbursementdetail:edit')") + //// @PreAuthorize("@ss.hasPermi('project:reimbursementdetail:edit')") @Log(title = "淇敼鐢宠鏄庣粏", businessType = BusinessType.UPDATE) @PostMapping("/updateRDlList") public AjaxResult updateRDlList(@RequestBody List<ServiceReimbursementdetail> serviceReimbursementdetails) { @@ -133,7 +133,7 @@ * 淇敼鎶ラ攢鐢宠鏄庣粏 */ @ApiOperation("淇敼鎶ラ攢鐢宠鏄庣粏") - //@PreAuthorize("@ss.hasPermi('project:reimbursementdetail:edit')") + //// @PreAuthorize("@ss.hasPermi('project:reimbursementdetail:edit')") @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.UPDATE) @PostMapping("/reimbursementdetailEdit") //@RepeatSubmit @@ -179,7 +179,7 @@ * 鍒犻櫎鎶ラ攢鐢宠鏄庣粏 */ @ApiOperation("鍒犻櫎鎶ラ攢鐢宠鏄庣粏") - //@PreAuthorize("@ss.hasPermi('project:reimbursementdetail:remove')") + //// @PreAuthorize("@ss.hasPermi('project:reimbursementdetail:remove')") @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.DELETE) @GetMapping("/remove/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { -- Gitblit v1.9.3