1. 会员用户的找回密码 API 的优化

This commit is contained in:
YunaiV
2023-08-19 23:12:34 +08:00
parent 5d4a7ffa3b
commit 95254341a1
11 changed files with 57 additions and 54 deletions

View File

@ -11,7 +11,7 @@ public interface ErrorCodeConstants {
// ========== 用户相关 1004001000============
ErrorCode USER_NOT_EXISTS = new ErrorCode(1004001000, "用户不存在");
ErrorCode USER_PASSWORD_FAILED = new ErrorCode(1004001001, "密码校验失败");
ErrorCode USER_MOBILE_NOT_EXISTS = new ErrorCode(1004001001, "手机号未注册用户");
ErrorCode USER_MOBILE_USED = new ErrorCode(1004001002, "修改手机失败,该手机号({})已经被使用");
// ========== AUTH 模块 1004003000 ==========