From f0f6c3b39dddf5cfdf145425687e9339453b5ba1 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期六, 09 九月 2023 10:01:42 +0800 Subject: [PATCH] 将put \ delete改成post \ get --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysStudentController.java | 35 ++++++++++++++--------------------- 1 files changed, 14 insertions(+), 21 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..5c7a0db 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; -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 @@ -143,7 +136,7 @@ */ @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)); @@ -154,7 +147,7 @@ */ @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