From 2f13f59f023fba63aa993172d48c14bcaaafb233 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期四, 16 五月 2024 13:53:34 +0800 Subject: [PATCH] 代码提交 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysStudentController.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysStudentController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysStudentController.java index 5c7a0db..840d3ef 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysStudentController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysStudentController.java @@ -1,4 +1,4 @@ -package com.ruoyi.system.controller; +package com.ruoyi.web.controller.system; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.annotation.RepeatSubmit; @@ -36,7 +36,7 @@ /** * 鏌ヨ瀛︾敓淇℃伅鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:student:list')") + // @PreAuthorize("@ss.hasPermi('system:student:list')") @GetMapping("/list") public TableDataInfo list(SysStudent sysStudent) { startPage(); @@ -102,7 +102,7 @@ /** * 瀵煎嚭瀛︾敓淇℃伅鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:student:export')") + // @PreAuthorize("@ss.hasPermi('system:student:export')") @Log(title = "瀛︾敓淇℃伅", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(SysStudent sysStudent) { @@ -114,7 +114,7 @@ /** * 鑾峰彇瀛︾敓淇℃伅璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:student:query')") + // @PreAuthorize("@ss.hasPermi('system:student:query')") @GetMapping(value = "/{studentId}") public AjaxResult getInfo(@PathVariable("studentId") Long studentId) { return AjaxResult.success(sysStudentService.getById(studentId)); @@ -123,7 +123,7 @@ /** * 鏂板瀛︾敓淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:student:add')") + // @PreAuthorize("@ss.hasPermi('system:student:add')") @Log(title = "瀛︾敓淇℃伅", businessType = BusinessType.INSERT) @PostMapping @RepeatSubmit @@ -134,7 +134,7 @@ /** * 淇敼瀛︾敓淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:student:edit')") + // @PreAuthorize("@ss.hasPermi('system:student:edit')") @Log(title = "瀛︾敓淇℃伅", businessType = BusinessType.UPDATE) @PostMapping("/edit") @RepeatSubmit @@ -145,7 +145,7 @@ /** * 鍒犻櫎瀛︾敓淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:student:remove')") + // @PreAuthorize("@ss.hasPermi('system:student:remove')") @Log(title = "瀛︾敓淇℃伅", businessType = BusinessType.DELETE) @GetMapping("/remove/{studentIds}") public AjaxResult remove(@PathVariable Long[] studentIds) { -- Gitblit v1.9.3