zyp 2 nedēļas atpakaļ
vecāks
revīzija
39e11e7f60

+ 1 - 1
fs-admin/src/main/java/com/fs/course/controller/qw/QwFsCourseWatchLogController.java

@@ -70,7 +70,7 @@ public class QwFsCourseWatchLogController extends BaseController
         return getDataTable(list);
     }
 
-    @PreAuthorize("@ss.hasPermi('course:courseWatchLog:statisticsList')")
+    @PreAuthorize("@ss.hasPermi('course:courseWatchLog:qw:statisticsList')")
     @GetMapping("/statisticsList")
     public TableDataInfo statisticsList(FsCourseWatchLogStatisticsListParam param)
     {

+ 1 - 1
fs-company/src/main/java/com/fs/course/controller/qw/QwFsCourseWatchLogController.java

@@ -71,7 +71,7 @@ public class QwFsCourseWatchLogController extends BaseController
         return getDataTable(list);
     }
 
-    @PreAuthorize("@ss.hasPermi('course:courseWatchLog:statisticsList')")
+    @PreAuthorize("@ss.hasPermi('course:courseWatchLog:qw:statisticsList')")
     @GetMapping("/statisticsList")
     public TableDataInfo statisticsList(FsCourseWatchLogStatisticsListParam param)
     {

+ 6 - 6
fs-company/src/main/java/com/fs/qw/qw/QwWorkTaskController.java

@@ -41,7 +41,7 @@ public class QwWorkTaskController extends BaseController
     /**
      * 查询企微任务看板列表
      */
-    @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:list')")
+    @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:list')")
     @GetMapping("/list")
     public TableDataInfo list(QwWorkTaskListParam qwWorkTask)
     {
@@ -61,7 +61,7 @@ public class QwWorkTaskController extends BaseController
     /**
      * 导出企微任务看板列表
      */
-    @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:export')")
+    @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:export')")
     @Log(title = "企微任务看板", businessType = BusinessType.EXPORT)
     @GetMapping("/export")
     public AjaxResult export(QwWorkTask qwWorkTask)
@@ -74,7 +74,7 @@ public class QwWorkTaskController extends BaseController
     /**
      * 获取企微任务看板详细信息
      */
-    @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:query')")
+    @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:query')")
     @GetMapping(value = "/{id}")
     public AjaxResult getInfo(@PathVariable("id") Long id)
     {
@@ -84,7 +84,7 @@ public class QwWorkTaskController extends BaseController
     /**
      * 新增企微任务看板
      */
-    @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:add')")
+    @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:add')")
     @Log(title = "企微任务看板", businessType = BusinessType.INSERT)
     @PostMapping
     public AjaxResult add(@RequestBody QwWorkTask qwWorkTask)
@@ -95,7 +95,7 @@ public class QwWorkTaskController extends BaseController
     /**
      * 修改企微任务看板
      */
-    @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:edit')")
+    @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:edit')")
     @Log(title = "企微任务看板处理", businessType = BusinessType.UPDATE)
     @PutMapping
     public AjaxResult edit(@RequestBody QwWorkTask qwWorkTask)
@@ -111,7 +111,7 @@ public class QwWorkTaskController extends BaseController
     /**
      * 删除企微任务看板
      */
-    @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:remove')")
+    @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:remove')")
     @Log(title = "企微任务看板", businessType = BusinessType.DELETE)
 	@DeleteMapping("/{ids}")
     public AjaxResult remove(@PathVariable Long[] ids)