From e1c48cf63ab05376645eb2acf6b4d984f08481ae Mon Sep 17 00:00:00 2001 From: zhn <947514737@qq.com> Date: Mon, 21 Mar 2022 15:20:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=BA=93--=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../searchcenter/controller/DocumentSearchController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/searchcenter/controller/DocumentSearchController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/searchcenter/controller/DocumentSearchController.java index a58862cd6..d4f72bc3d 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/searchcenter/controller/DocumentSearchController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/searchcenter/controller/DocumentSearchController.java @@ -10,6 +10,7 @@ import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; 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.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; @@ -71,7 +72,7 @@ public class DocumentSearchController { } @ApiOperation(value="全部查询", notes="全部查询") - @GetMapping(value = "/getFullTextInfoList") + @PostMapping(value = "/getFullTextInfoList") public Result getFullTextInfoList(@RequestBody SearchVO searchVO) { IPage pageInfo = iDocumentSearchService.getFullTextInfoList(searchVO); return Result.OK(pageInfo);