From e0a6e1d028d04908a7751da7b166853c5baddf85 Mon Sep 17 00:00:00 2001
From: xusd <hugeinfo123>
Date: Tue, 17 Sep 2024 19:44:12 +0800
Subject: [PATCH] 测试环境端口调整

---
 dyh-service/dyh-sys/src/main/java/cn/huge/module/file/controller/web/FileInfoWebController.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dyh-service/dyh-sys/src/main/java/cn/huge/module/file/controller/web/FileInfoWebController.java b/dyh-service/dyh-sys/src/main/java/cn/huge/module/file/controller/web/FileInfoWebController.java
index 658fecd..866127d 100644
--- a/dyh-service/dyh-sys/src/main/java/cn/huge/module/file/controller/web/FileInfoWebController.java
+++ b/dyh-service/dyh-sys/src/main/java/cn/huge/module/file/controller/web/FileInfoWebController.java
@@ -286,7 +286,7 @@
      * @return Object
      * @url {ctx}/api/web/fileInfo/deleteFileById?id=
      */
-    @DeleteMapping("/deleteFileByIds")
+    @GetMapping("/deleteFileByIds")
     public Object deleteFileByIds(@RequestParam(value = "ids") String ids) {
         try {
             String[] id = ids.split(",");
@@ -299,7 +299,7 @@
         }
     }
 
-    @DeleteMapping("/deleteFileById")
+    @GetMapping("/deleteFileById")
     public Object deleteFileById(@RequestParam(value = "id") String id) {
         try {
             service.deleteFileById(id);

--
Gitblit v1.8.0