Browse Source

通知公告开放列表和查询取消权限

Administrator 2 năm trước cách đây
mục cha
commit
c9a35d5780

+ 0 - 2
boman-modules/boman-system/src/main/java/com/boman/system/controller/SysNoticeController.java

@@ -36,7 +36,6 @@ public class SysNoticeController extends BaseController
     /**
      * 获取通知公告列表
      */
-    @PreAuthorize(hasPermi = "system:notice:list")
     @GetMapping("/list")
     public TableDataInfo list(SysNotice notice)
     {
@@ -48,7 +47,6 @@ public class SysNoticeController extends BaseController
     /**
      * 根据通知公告编号获取详细信息
      */
-    @PreAuthorize(hasPermi = "system:notice:query")
     @GetMapping(value = "/{id}")
     public AjaxResult getInfo(@PathVariable Long id)
     {