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 |   49 +++++++++++++++++++++----------------------------
 1 files changed, 21 insertions(+), 28 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 610dfa5..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,29 +1,22 @@
-package com.ruoyi.system.controller;
+package com.ruoyi.web.controller.system;
 
-import java.util.*;
-import java.util.stream.Collectors;
-
-import com.ruoyi.common.utils.StringUtils;
-import com.ruoyi.system.mapper.SysStudentMapper;
-import org.springframework.security.access.prepost.PreAuthorize;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.PutMapping;
-import org.springframework.web.bind.annotation.DeleteMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
 import com.ruoyi.common.annotation.Log;
 import com.ruoyi.common.annotation.RepeatSubmit;
 import com.ruoyi.common.core.controller.BaseController;
 import com.ruoyi.common.core.domain.AjaxResult;
-import com.ruoyi.common.enums.BusinessType;
-import com.ruoyi.system.domain.SysStudent;
-import com.ruoyi.system.service.ISysStudentService;
-import com.ruoyi.common.utils.poi.ExcelUtil;
 import com.ruoyi.common.core.page.TableDataInfo;
+import com.ruoyi.common.enums.BusinessType;
+import com.ruoyi.common.utils.StringUtils;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.system.domain.SysStudent;
+import com.ruoyi.system.mapper.SysStudentMapper;
+import com.ruoyi.system.service.ISysStudentService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.web.bind.annotation.*;
+
+import java.util.*;
+import java.util.stream.Collectors;
 
 /**
  * 瀛︾敓淇℃伅Controller
@@ -43,7 +36,7 @@
     /**
      * 鏌ヨ瀛︾敓淇℃伅鍒楄〃
      */
-    @PreAuthorize("@ss.hasPermi('system:student:list')")
+    // @PreAuthorize("@ss.hasPermi('system:student:list')")
     @GetMapping("/list")
     public TableDataInfo list(SysStudent sysStudent) {
         startPage();
@@ -109,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) {
@@ -121,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));
@@ -130,7 +123,7 @@
     /**
      * 鏂板瀛︾敓淇℃伅
      */
-    @PreAuthorize("@ss.hasPermi('system:student:add')")
+    // @PreAuthorize("@ss.hasPermi('system:student:add')")
     @Log(title = "瀛︾敓淇℃伅", businessType = BusinessType.INSERT)
     @PostMapping
     @RepeatSubmit
@@ -141,9 +134,9 @@
     /**
      * 淇敼瀛︾敓淇℃伅
      */
-    @PreAuthorize("@ss.hasPermi('system:student:edit')")
+    // @PreAuthorize("@ss.hasPermi('system:student:edit')")
     @Log(title = "瀛︾敓淇℃伅", businessType = BusinessType.UPDATE)
-    @PutMapping
+    @PostMapping("/edit")
     @RepeatSubmit
     public AjaxResult edit(@RequestBody SysStudent sysStudent) {
         return toAjax(sysStudentService.updateById(sysStudent));
@@ -152,9 +145,9 @@
     /**
      * 鍒犻櫎瀛︾敓淇℃伅
      */
-    @PreAuthorize("@ss.hasPermi('system:student:remove')")
+    // @PreAuthorize("@ss.hasPermi('system:student:remove')")
     @Log(title = "瀛︾敓淇℃伅", businessType = BusinessType.DELETE)
-    @DeleteMapping("/{studentIds}")
+    @GetMapping("/remove/{studentIds}")
     public AjaxResult remove(@PathVariable Long[] studentIds) {
         return toAjax(sysStudentService.removeByIds(Arrays.asList(studentIds)));
     }

--
Gitblit v1.9.3