From 34a716e48e49743083953113bfc2e8011d52444f Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 15 九月 2025 19:08:05 +0800
Subject: [PATCH] 日志修改
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundSharedController.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundSharedController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundSharedController.java
index 9c86e5e..359fa25 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundSharedController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundSharedController.java
@@ -35,7 +35,7 @@
* 鏌ヨ璐圭敤鐢宠涓诲垪琛�
*/
@ApiOperation("鏌ヨ璐圭敤鐢宠涓诲垪琛�")
- @PreAuthorize("@ss.hasPermi('system:shared:list')")
+ // @PreAuthorize("@ss.hasPermi('system:shared:list')")
@GetMapping("/list")
public TableDataInfo list(ServiceFundShared serviceFundShared) {
startPage();
@@ -47,7 +47,7 @@
* 瀵煎嚭璐圭敤鐢宠涓诲垪琛�
*/
@ApiOperation("瀵煎嚭璐圭敤鐢宠涓诲垪琛�")
- @PreAuthorize("@ss.hasPermi('system:shared:export')")
+ // @PreAuthorize("@ss.hasPermi('system:shared:export')")
@Log(title = "璐圭敤鐢宠涓�", businessType = BusinessType.EXPORT)
@GetMapping("/export")
public AjaxResult export(ServiceFundShared serviceFundShared) {
@@ -60,7 +60,7 @@
* 鑾峰彇璐圭敤鐢宠涓昏缁嗕俊鎭�
*/
@ApiOperation("鑾峰彇璐圭敤鐢宠涓昏缁嗕俊鎭�")
- @PreAuthorize("@ss.hasPermi('system:shared:query')")
+ // @PreAuthorize("@ss.hasPermi('system:shared:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) {
return AjaxResult.success(serviceFundSharedService.getById(id));
@@ -70,7 +70,7 @@
* 鏂板璐圭敤鐢宠涓�
*/
@ApiOperation("鏂板璐圭敤鐢宠涓�")
- @PreAuthorize("@ss.hasPermi('system:shared:add')")
+ // @PreAuthorize("@ss.hasPermi('system:shared:add')")
@Log(title = "璐圭敤鐢宠涓�", businessType = BusinessType.INSERT)
@PostMapping("/add")
@RepeatSubmit
@@ -83,7 +83,7 @@
* 淇敼璐圭敤鐢宠涓�
*/
@ApiOperation("淇敼璐圭敤鐢宠涓�")
- @PreAuthorize("@ss.hasPermi('system:shared:edit')")
+ // @PreAuthorize("@ss.hasPermi('system:shared:edit')")
@Log(title = "璐圭敤鐢宠涓�", businessType = BusinessType.UPDATE)
@PutMapping
@RepeatSubmit
@@ -95,7 +95,7 @@
* 鍒犻櫎璐圭敤鐢宠涓�
*/
@ApiOperation("鍒犻櫎璐圭敤鐢宠涓�")
- @PreAuthorize("@ss.hasPermi('system:shared:remove')")
+ // @PreAuthorize("@ss.hasPermi('system:shared:remove')")
@Log(title = "璐圭敤鐢宠涓�", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) {
--
Gitblit v1.9.3