From 294c87aba416abfc35a4a6d30fc7cb3f5f13b485 Mon Sep 17 00:00:00 2001 From: WeiRan <2392355487@qq.com> Date: Fri, 23 Aug 2024 11:02:54 +0800 Subject: [PATCH] =?UTF-8?q?feat():=E5=AE=8C=E5=96=84=E5=86=85=E9=83=A8?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BD=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../market/controller/FindCustomerMeaasgeController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud-market-server/src/main/java/com/muyu/cloud/market/controller/FindCustomerMeaasgeController.java b/cloud-market-server/src/main/java/com/muyu/cloud/market/controller/FindCustomerMeaasgeController.java index a3ef197..d77e4f6 100644 --- a/cloud-market-server/src/main/java/com/muyu/cloud/market/controller/FindCustomerMeaasgeController.java +++ b/cloud-market-server/src/main/java/com/muyu/cloud/market/controller/FindCustomerMeaasgeController.java @@ -39,7 +39,7 @@ public class FindCustomerMeaasgeController { * @param idCard * @return */ - @RequestMapping(path = "/findListByuserCard/{idCard}") + @PostMapping(path = "/findListByuserCard/{idCard}") @Operation(summary = "查询客户信息",description = "根据身份证号查询客户信息") public Result findListByuserCard(@Validated @PathVariable String idCard){ return Result.success(findCustomerMeaasgeService.findListByuserCard(idCard)); @@ -50,7 +50,7 @@ public class FindCustomerMeaasgeController { * @param tel * @return */ - @RequestMapping(path = "/findListByuserPhone/{tel}") + @PostMapping(path = "/findListByuserPhone/{tel}") @Operation(summary = "查询客户信息",description = "根据手机号查询客户信息") public Result findListByuserPhone(@Validated @PathVariable String tel){ return Result.success(findCustomerMeaasgeService.findListByuserPhone(tel));