From 4304fcd024db1ea38280585b59646b8b4cd599e1 Mon Sep 17 00:00:00 2001 From: chen-xin-zhi <3588068430@qq.com> Date: Mon, 19 May 2025 00:21:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86=E6=B3=A8=E5=86=8C?= =?UTF-8?q?=E5=92=8C=E7=99=BB=E5=BD=95=E6=97=B6=E7=9A=84=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=E7=A0=81=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../promotion/controller/userInfo/UserInfoController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/greenorange/promotion/controller/userInfo/UserInfoController.java b/src/main/java/com/greenorange/promotion/controller/userInfo/UserInfoController.java index 58500e0..21acdb4 100644 --- a/src/main/java/com/greenorange/promotion/controller/userInfo/UserInfoController.java +++ b/src/main/java/com/greenorange/promotion/controller/userInfo/UserInfoController.java @@ -70,7 +70,7 @@ public class UserInfoController { * @param commonStringRequest 手机号 * @return 验证码 */ - @PostMapping("code") + @PostMapping("code/register") @Operation(summary = "小程序端用户获取验证码(用于注册)", description = "参数:手机号,权限:管理员(boss, admin),方法名:getVerificationCodeForRegister") // @SysLog(title = "用户管理", content = "小程序端用户获取验证码") public BaseResponse getVerificationCodeForRegister(@Valid @RequestBody CommonStringRequest commonStringRequest) { @@ -85,7 +85,7 @@ public class UserInfoController { * @param commonStringRequest 手机号 * @return 验证码 */ - @PostMapping("code") + @PostMapping("code/pwd") @Operation(summary = "小程序端用户获取验证码(用于密码登录和忘记密码)", description = "参数:手机号,权限:管理员(boss, admin),方法名:getVerificationCode") // @SysLog(title = "用户管理", content = "小程序端用户获取验证码") public BaseResponse getVerificationCode(@Valid @RequestBody CommonStringRequest commonStringRequest) {