From 907641e56c2085aaa81f267946dc3e3e9fca73e7 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 18 九月 2024 09:39:02 +0800
Subject: [PATCH] 代码提交
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaScriptController.java | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaScriptController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaScriptController.java
index 730bf03..a84b3de 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaScriptController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaScriptController.java
@@ -38,7 +38,7 @@
* 鏌ヨ闂璇濇湳搴撳垪琛�
*/
@ApiOperation("鏌ヨ闂璇濇湳搴撳垪琛�")
- @PreAuthorize("@ss.hasPermi('system:script:list')")
+ //@PreAuthorize("@ss.hasPermi('system:script:list')")
@PostMapping("/list")
public TableDataInfo list(@RequestBody IvrLibaScript ivrLibaScript) {
PageUtils.startPageByPost(ivrLibaScript.getPageNum(),ivrLibaScript.getPageSize());
@@ -50,7 +50,7 @@
* 瀵煎嚭闂璇濇湳搴撳垪琛�
*/
@ApiOperation("瀵煎嚭闂璇濇湳搴撳垪琛�")
- @PreAuthorize("@ss.hasPermi('system:script:export')")
+ //@PreAuthorize("@ss.hasPermi('system:script:export')")
@Log(title = "闂璇濇湳搴�", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, IvrLibaScript ivrLibaScript) {
@@ -63,7 +63,7 @@
* 鑾峰彇闂璇濇湳搴撹缁嗕俊鎭�
*/
@ApiOperation("鑾峰彇闂璇濇湳搴撹缁嗕俊鎭�")
- @PreAuthorize("@ss.hasPermi('system:script:query')")
+ //@PreAuthorize("@ss.hasPermi('system:script:query')")
@GetMapping(value = "/getInfo/{questionid}")
public AjaxResult getInfo(@PathVariable("questionid") String questionid) {
return success(ivrLibaScriptService.selectIvrLibaScriptByQuestionid(questionid));
@@ -73,7 +73,7 @@
* 鏂板闂璇濇湳搴�
*/
@ApiOperation("鏂板闂璇濇湳搴�")
- @PreAuthorize("@ss.hasPermi('system:script:add')")
+ //@PreAuthorize("@ss.hasPermi('system:script:add')")
@Log(title = "闂璇濇湳搴�", businessType = BusinessType.INSERT)
@PostMapping("/add")
public AjaxResult add(@RequestBody IvrLibaScript ivrLibaScript) {
@@ -84,7 +84,7 @@
* 淇敼闂璇濇湳搴�
*/
@ApiOperation("淇敼闂璇濇湳搴�")
- @PreAuthorize("@ss.hasPermi('system:script:edit')")
+ //@PreAuthorize("@ss.hasPermi('system:script:edit')")
@Log(title = "闂璇濇湳搴�", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
public AjaxResult edit(@RequestBody IvrLibaScript ivrLibaScript) {
@@ -95,7 +95,7 @@
* 鍒犻櫎闂璇濇湳搴�
*/
@ApiOperation("鍒犻櫎闂璇濇湳搴�")
- @PreAuthorize("@ss.hasPermi('system:script:remove')")
+ //@PreAuthorize("@ss.hasPermi('system:script:remove')")
@Log(title = "闂璇濇湳搴�", businessType = BusinessType.DELETE)
@GetMapping("/remove/{questionids}")
public AjaxResult remove(@PathVariable String[] questionids) {
@@ -107,7 +107,7 @@
* 鏌ヨ闂璇濇湳璇︽儏鏍规嵁鏉′欢
*/
@ApiOperation("鏌ヨ闂璇濇湳璇︽儏鏍规嵁鏉′欢")
- @PreAuthorize("@ss.hasPermi('system:script:list')")
+ //@PreAuthorize("@ss.hasPermi('system:script:list')")
@PostMapping("/selectInfoByCondition")
public AjaxResult selectInfoByCondition(@RequestBody IvrLibaScriptVO ivrLibaScriptVO) {
if (ObjectUtils.isEmpty(ivrLibaScriptVO)) {
@@ -122,7 +122,7 @@
* 鏂板鎴栦慨鏀归棶棰樿鎯�
*/
@ApiOperation("鏂板鎴栦慨鏀归棶棰樿鎯�")
- @PreAuthorize("@ss.hasPermi('system:script:list')")
+ //@PreAuthorize("@ss.hasPermi('system:script:list')")
@PostMapping("/saveOrUpdateScript")
public AjaxResult saveOrUpdateScript(@RequestBody IvrLibaScriptVO ivrLibaScriptVO) {
if (ObjectUtils.isEmpty(ivrLibaScriptVO)) {
--
Gitblit v1.9.3