From 10aaa035f5be0312304d20f022bdb714a8f4900a Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 11 十二月 2024 22:16:23 +0800
Subject: [PATCH] 代码提交
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryController.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryController.java
index e542da5..038dd47 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryController.java
@@ -37,7 +37,7 @@
* 鏌ヨ瀹f暀璧勬枡搴撳垪琛�
*/
@ApiOperation("鏌ヨ瀹f暀璧勬枡搴撳垪琛�")
- @PreAuthorize("@ss.hasPermi('system:library:list')")
+ //@PreAuthorize("@ss.hasPermi('system:library:list')")
@PostMapping("/list")
public TableDataInfo list(@RequestBody HeLibrary heLibrary) {
startPage();
@@ -48,7 +48,7 @@
/**
* 瀵煎嚭瀹f暀璧勬枡搴撳垪琛�
*/
- @PreAuthorize("@ss.hasPermi('system:library:export')")
+ //@PreAuthorize("@ss.hasPermi('system:library:export')")
@Log(title = "瀹f暀璧勬枡搴�", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, HeLibrary heLibrary) {
@@ -60,7 +60,7 @@
/**
* 鑾峰彇瀹f暀璧勬枡搴撹缁嗕俊鎭�
*/
- @PreAuthorize("@ss.hasPermi('system:library:query')")
+ //@PreAuthorize("@ss.hasPermi('system:library:query')")
@GetMapping(value = "/getInfo/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) {
return success(heLibraryService.selectHeLibraryById(id));
@@ -69,7 +69,7 @@
/**
* 鏂板瀹f暀璧勬枡搴�
*/
- @PreAuthorize("@ss.hasPermi('system:library:add')")
+ //@PreAuthorize("@ss.hasPermi('system:library:add')")
@Log(title = "瀹f暀璧勬枡搴�", businessType = BusinessType.INSERT)
@PostMapping("/add")
public AjaxResult add(@RequestBody HeLibrary heLibrary) {
@@ -79,7 +79,7 @@
/**
* 淇敼瀹f暀璧勬枡搴�
*/
- @PreAuthorize("@ss.hasPermi('system:library:edit')")
+ //@PreAuthorize("@ss.hasPermi('system:library:edit')")
@Log(title = "瀹f暀璧勬枡搴�", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
public AjaxResult edit(@RequestBody HeLibrary heLibrary) {
@@ -90,7 +90,7 @@
* 鍒犻櫎瀹f暀璧勬枡搴�
*/
@ApiOperation("鍒犻櫎瀹f暀璧勬枡搴�")
- @PreAuthorize("@ss.hasPermi('system:library:remove')")
+ //@PreAuthorize("@ss.hasPermi('system:library:remove')")
@Log(title = "瀹f暀璧勬枡搴�", businessType = BusinessType.DELETE)
@GetMapping("/remove/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) {
@@ -101,7 +101,7 @@
* 鏂板鎴栦慨鏀瑰鏁欒鎯�
*/
@ApiOperation("鏂板鎴栦慨鏀瑰鏁欒鎯�")
- @PreAuthorize("@ss.hasPermi('system:script:list')")
+ //@PreAuthorize("@ss.hasPermi('system:script:list')")
@PostMapping("/saveOrUpdateHeLibrary")
public AjaxResult saveOrUpdateHeLibrary(@RequestBody HeLibraryVO heLibraryVO) {
if (ObjectUtils.isEmpty(heLibraryVO)) {
--
Gitblit v1.9.3